Questions tagged [logfile]

A log file is a file that contains a list of events, which have been "logged" by a computer.

A log file is a file that contains a list of events, which have been "logged" by a computer. Log files are often generated during software installations and are created by Web servers, but they can be used for many other purposes as well. Most log files are saved in a plain text format, which minimizes their file size and allows them to be viewed in a basic text editor.

701 questions
1
vote
1 answer

Warning shown in logging MarkLogic : Clearing expired DatabaseQueryPath MarkLogic

After searching the internet via Google, we could not find any proper answer to our question. This is our situation... We experience some warnings in the Windows Eventlog that shows this (Warning) information: Clearing expired DatabaseQueryPath…
1
vote
1 answer

How to fix "ah00169: caught SIGTERM, shutting down" error?

I am trying to setup my website on a web VPS, but there are still some errors which prevent it from working. In the log files I found these errors: [Mon Jan 14 22:20:26.519775 2019] [mpm_prefork:notice] [pid 25164] AH00169: caught SIGTERM, shutting…
sexyberry
  • 41
  • 1
  • 4
1
vote
1 answer

How to create a LogFile and path with LoggerFactory

EDIT This is my batchfile code to run a (.bat) File , and i try to convert the output of the bat into a Logfile ,but i dont want to set the name of the logfile automatically , for every bat i want to run , create a new logfile with a the name of the…
KmanTheMan
  • 27
  • 5
1
vote
0 answers

What does {23.0231*213.759}${23.0231*213.759}{{=23.0231*213.759}} mean?

I was going through the API logs of a Ruby on Rails app, and I noticed this input on a few failed calls. Does anyone know what it means?
Sebastian
  • 2,154
  • 1
  • 26
  • 42
1
vote
1 answer

Why does my SQL Server logfile have 99% space available after giving me a full warning?

While deleting a large number of records, I get this error: The transaction log for database 'databasename' is full I found this answer very helpful, it recommends: Right-click your database in SQL Server Manager, and check the Options page. …
Martin Hansen Lennox
  • 2,837
  • 2
  • 23
  • 64
1
vote
3 answers

python3 - import dataframe from textfile format head1=value|head2=value

I looked into the pandas documentation and there are several options to import data into a pandas dataframe. The common way seems to be importing a csv file, when it comes to importing textfiles. The data I would like to use are logfiles formatted…
lutz
  • 123
  • 1
  • 10
1
vote
1 answer

Getting exception while creating zip file

I want to convert my log file into zip file. So for that I'm using Objective-Zip. But I'm getting exception 2018-08-02 11:53:57.901192+0530 Aglive[1076:511096] *** Terminating app due to uncaught exception 'OZZipException', reason: 'Can't open…
user3452
  • 349
  • 5
  • 20
1
vote
1 answer

I have a SQL Server file backup file (.bak) i want to get detail of each transaction

I have a SQL Server backup (.bak) file, and I want use fn_dump_dblog (undocumented function) on it to get all transaction history from it. I read this article…
1
vote
2 answers

Looking for a Python approach to normally-closed logfiles

I have a Python program using a RotatingFileHandler for logging. The logging file handler opens the logfile in exclusive mode (once) and keeps it open until the app closes. The problem is that I need to allow other processes to read the logfile…
1
vote
1 answer

How do you store logs in a single log file using java.util.logging.FileHandler?

I want to add exceptions in a single log file, In my source code following code is used multiple times... i want to store all exceptions in single file, but it creates multiple files like exception.log, exception.log.1, exception.log.1.lck,…
Gaurav
  • 173
  • 1
  • 13
1
vote
1 answer

Restructuring pyparsing parse results of multithreaded log file

I have a log file of a multithreaded process which looks like this: input_parameter_1: value input_parameter_2: value
Giuseppe Cianci
  • 407
  • 3
  • 9
1
vote
1 answer

Add custom tags to xml file in RobotFramework

As of now I use the builtin function Log to store the desired information. Such as serial numbers and measured voltages and currents. This is fine for the robot html log file since only humans will read it. However now we want to add the information…
Heneer
  • 313
  • 6
  • 17
1
vote
0 answers

Library for effcient logfile compression

Some time ago I've found a compression library created specially for logfiles compression. I just remember that it can compress logfiles very efficiently. I've forgotten the name of the library (kind of database). I also remember that it creates…
Marek Marczak
  • 532
  • 8
  • 14
1
vote
1 answer

How to append the output of -Verbose to the log file in PowerShell?

I have a PowerShell script which copies some file from one folder to another folder and I also have code to create a log file and add the steps that are performed by the script to the log file. Below is the code - [CmdletBinding()] Param ( …
SRP
  • 999
  • 4
  • 21
  • 39
1
vote
0 answers

Hadoop HDFS file recovery elapsed time (start time and end time)

I need to measure the speed of recovery for files with different file sizes stored with different storage policies (replication and erasure codes) in HDFS. My question is: Is there a way to see the start time and end time (or simply the elapsed time…
ingmid
  • 61
  • 3