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
5
votes
2 answers

Where go my logging files of my webapp on a linux Tomcat 7 installation?

I currently develop a simple web app using Eclipse and a local Tomcat 7 server. I configured Eclipse so I can start the Tomcat 7 right out of my IDE - not much magic here. In my web app, I use SLF4J with Logback, which looks like this in a service…
It's Leto
  • 968
  • 4
  • 17
  • 25
5
votes
4 answers

Remove existing log file and create new log file in sql server

I have log file which is grown to 1TB. I have no need of log file. Just want to delete the old log file and create a new one instead of old log file. How can I achieve that ? will it cause any other problem? pleas help.
vignesh
  • 1,414
  • 5
  • 19
  • 38
5
votes
1 answer

Where does Atom (or it's installed packages) store debug log files?

I just opened this bug report on github. Obviously it would be nice to add some detail from the log file. Where does Atom store them? Is this error referring to perhaps a log file generated by the package itself? If so, is there a conventional…
jinglesthula
  • 4,446
  • 4
  • 45
  • 79
5
votes
1 answer

Visual Studio "15" Preview uninstall

I'm trying to install VS "15" Preview 5, I have launched the new installer and now it's saying that I must uninstall previous version (Preview 4). When I click on remove button the uninstall process fails and this is the error on log…
TyKonKet
  • 304
  • 2
  • 6
  • 13
5
votes
1 answer

Is there a log viewer for a vnext build log?

When looking at a vnext build in TFS 2015, I often see this: The log is too big to be displayed in the browser. You can download the build logs and view them offline. E.g. When downloaded, these are just text files, and whilst notepad can open…
NikolaiDante
  • 18,469
  • 14
  • 77
  • 117
5
votes
2 answers

SQL server - Delete statement increase the LOG size

I have a LOGGIN database and it is quite big - 400 GB. It has millions of rows. I just ran a delete statement which took 2.5 hours and deleted probably millions of rows. delete FROM [DB].[dbo].[table] where [Level] not in ('info','error') This…
user1666952
  • 309
  • 1
  • 8
  • 18
5
votes
3 answers

Any Windows APIs to get file handles besides createfile and openfile?

I am trying to snoop on a log file that an application is writing to. I have successfully hooked createfile with the detours library from MSR, but createfile never seems to be called with file I am interested in snooping on. I have also tried…
RedDeckWins
  • 2,111
  • 14
  • 16
4
votes
1 answer

How to change log txt file color in node js

for example, something like this. console.log("text", "red"); How can I set log txt file font color in node js. I have done this in terminal but want to same in log txt file. is this possible to show different color for different message in log txt…
RK Varun
  • 61
  • 5
4
votes
1 answer

Re-using created dataset for different task (object detection - image classification)

I have created a large dataset in Amazon sagemaker and labeled it using bounding boxes. I used this dataset for object detection and everything worked fine. Later, I wanted to use this dataset for simple image classification. But every time, I try…
4
votes
1 answer

where windows 10 the "task scheduler" store log file?

I would simply view the log file of my "task scheduler". I have "windows 10 pro" I thought it was into the file "C:\Windows\Tasks\SchedLgU.txt" but I haven't that file someone help? thanks
mfran2002
  • 47
  • 1
  • 1
  • 6
4
votes
1 answer

How to enable multiple Server.log(s) in Azerothcore

I want to enable multiple Server.log so I can see what happened with the server before it restarted. What I mean is: saving separate Server.log files every time the server restarts, instead of rewriting the same file.
Knindza
  • 81
  • 4
4
votes
3 answers

Create a Log file for Rsync if not exists

Im writing a simple bash script where the bash script will sync my live servers with my staging servers. I am using rsync to do this. What I need is a log file for each day the script was executed. I am using the following command rsync -azP --stats…
Fahad Sohail
  • 1,818
  • 4
  • 21
  • 33
4
votes
1 answer

Visual Studio '15' Preview 5 installation error

If I try to install Visual Studio '15' Preview 5, I get an Error and the following logfile: 2016-10-07T18:05:42 : Verbose : SetupEngine.Installer.InstallProduct reported error. [channelId: Microsoft.VisualStudio.Channels.Preview, productId:…
David Ullmer
  • 167
  • 1
  • 10
4
votes
0 answers

How to upload docker container logs from TRAVIS CI to remote machine?

I am running unit and functional tests on Docker Containers using TRAVIS CI. My requirement is, I want to store logs files in a remote server/machine for future reference. I read below link https://docs.travis-ci.com/user/uploading-artifacts/ and…
rameshthoomu
  • 1,234
  • 2
  • 17
  • 33
4
votes
1 answer

Python write text to .tar.gz

I look for a possibility to write a text file directly (OnTheFly) in a .tar.gz file with python. The best would be a solution like fobj = open (arg.file, "a") to append the text. I want to use this feature for long log files that you are not…
FrankStein
  • 85
  • 13
1 2
3
46 47