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
2
votes
1 answer

What is the meaning of numbers in UVM_INFO?

The following message is from a transcript file created by running QuestaSim to simulate dut. What does the number 39 mean? UVM_INFO /home/Icer/nocc/noc-router/vips/hermes_pkg/src/hermes_agent.sv(39) @ 0: uvm_test_top.env.agent_master_0…
benjstark
  • 83
  • 4
2
votes
0 answers

org.jboss.logging.Logger + Quarkus Framework + Log File Configuration Issue

I have been traying to generate a Log file with the fallowing configuration, (suggested by Quarkus https://quarkus.io/guides/logging): application.properties…
J2RE
  • 31
  • 7
2
votes
1 answer

NodeJs deployment on cPanel: Missing Passenger.log and stderr.log files

I've deployed my NodeJs application on two different shared web hosting servers. The first one automatically generates stderr.log file and has a passenger file. However, the second server doesn't and I am therefore unable to see the error of the…
Yandy
  • 95
  • 6
2
votes
3 answers

How to replace newlines between brackets

I have log file similar to this format test { seq-cont { 0, 67, 266 }, grp-id 505 } } test{ test1{ val …
Ramanan T
  • 179
  • 1
  • 10
2
votes
0 answers

How to do Data cleaning with multiple text files

I have directory with log files. So, for reading and concatenating i'm using following commands: filenames = glob('*.log') df = [pd.read_csv(f) for f in filenames Every log files looks like this: Tracer: (1) 18F-Nb25 Batch no: 3459 Date:…
PiyushT
  • 21
  • 1
2
votes
1 answer

how to set Log rotate in laravel?

Right now I'm using a single log file, but there is requirement to make it daily , but for the current date, the file name must be laravel.log laravel-2020-08-30.log laravel-2020-08-31.log laravel-202-009-01.log -> the current date must be…
ezles88
  • 159
  • 1
  • 12
2
votes
2 answers

Can I write some results to a file using Log::Log4perl without depending on the default levels?

I want to log some results into a file withot messing with the leves of my logs. Is it possible to do that with Log::Log4perl. I have tried to follow the documentation, but I only was able to find that it depends on the log level to printo a file?…
nck
  • 1,673
  • 16
  • 40
2
votes
1 answer

Laravel .ENV accessibility?

I have had my SES key compromised because of Laravel accidentally being set to 'debug=true' which exposed the credentials, which has been fixed. It was an oversight on my part, however, doing full digging I see access requests to .env in my apache…
user12121025
2
votes
2 answers

Best way of monitoring multiple log files

I need to know what is the best tools to monitor multiple log files suitable to my needs. What I need : Send and monitor multiple log files at once Support real-time viewing Better graphical User Interface whenever possible Capable of searching or…
Budianto IP
  • 1,118
  • 1
  • 13
  • 27
2
votes
3 answers

Sending output to logfile or STDOUT

I am trying to come up with some logic to give my script an option of where to send the output. This is a test script I started to write, I started to fizzle out trying to think of the combonations of the two options. I know I am overthinking this…
AtomicPorkchop
  • 2,625
  • 5
  • 36
  • 55
2
votes
1 answer

How to access the content of the log file after using Pyomo to call a solver in NEOS server?

I am using Pyomo to run BONMIN solver from the NEOS server. However, it returns a simple log file without any useful information such as the number of iterations. Can you let me know what I should do to retrieve the full log file? The code in Pyomo…
clarkkent
  • 21
  • 2
2
votes
0 answers

What happens when 2 transactions update record and one rolls back?

T : Transaction T U : Transaction U Scenario: T deletes a record from a block. U inserts a record into the block and the slot where the previously deleted record is picked to hold the new record. T now rolls back. Questions: Are the old values of…
Pape Sow Traore
  • 179
  • 1
  • 3
  • 14
2
votes
1 answer

How to write date and time to a log file on the same line using batch

I'm currently making a batch-file to write the date and time to a logfile, but I can't find out how to keep the info on the same line of the .log. REM Clear the screen REM ------------------------------------------------------ cls date /T >>…
RocktheFries
  • 221
  • 2
  • 10
2
votes
0 answers

how to save logging module output in a specified directory in python

By using below mentioned code I am able to save the logging module output in current working directory. But my aim is to save this output in some another directory i.e, what ever the directory i mentioned with the file name it has to be save in…
2
votes
0 answers

C++: Identify when a logfile gets moved/renamed/deleted when I'm reading from it using a file descriptor

When the JVM creates a log file with log rotation enabled, it creates a file with a name like this: logfile.0.current After it reaches a file size threshold, and rotates to a new file, it moves the file to logfile.0 and creates a new file:…
BlueChips23
  • 1,861
  • 5
  • 34
  • 53