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
0 answers

How to see the response sent in log file created by tomcat server in eclipse

I have run a web project in eclipse and used tomcat server 7.0 to run it. Now, the log file that is the access log found in .metadata plugins... folder is as follows.. 127.0.0.1 - - [01/Sep/2015:10:02:09 +0530] "GET / HTTP/1.1" 404 955 …
krishb591993
  • 193
  • 1
  • 5
  • 16
2
votes
2 answers

How to remove deprecated warning in log-file of open-ACS, Project-Open

How to remove the warning in the log-file for using a deprecated proc within openACS, project-open? Part of the config: # Debug is turned on for demo servers. Please turn off for # performance critical production installations. set debug …
Thorsten Niehues
  • 13,712
  • 22
  • 78
  • 113
2
votes
3 answers

Open ACS / Project Open log file size increases too much (huge log size)

How to reduce the Opject-Opens log file size. ]Project-Open[ is based on the openACS framework and produces huge amount of logs. One Example is a deprecated warning which occures very often. After a few day the log file size i several GB which is…
Thorsten Niehues
  • 13,712
  • 22
  • 78
  • 113
2
votes
2 answers

matlab - display dos command output to static text

i am using GUI to call a terminal command. By using dos(my_command, '-echo') i can get the command output in Matlab's Command Window. Is there anyway to replicate that -echo in a static text in my GUI? Currently, with my_command, I write the output…
scmg
  • 1,904
  • 1
  • 15
  • 24
2
votes
3 answers

Can KAFKA producer read log files?

Log files of my application keep accumulating on a server.I want to dump them into HDFS through KAFKA.I want the Kafka producer to read the log files,send them to Kafka broker and then move those files to another folder.Can the Kafka producer read…
Kash
  • 43
  • 1
  • 11
2
votes
1 answer

Batch file to detect failure in a log file and then email?

I don't know if a batchfile is a proper solution to this problem, but I'll describe what I need to do and what I've done so far. I use a batch file triggering Robocopy and then Blat to send logfiles of a daily file copy task to a target address. …
2
votes
2 answers

Where does SAS save log files when log is full?

I forgot to printto my log and it filled up. I tried to choose the 'save' option from the popup window. I entered a name+path for the log and it didn't accept it. I tried entering just a name and it accepted it, but I have no idea where it saved…
pakalla
  • 163
  • 4
  • 10
2
votes
1 answer

Java tail log file and display it in jsp

I would like to display log file contents in a jsp page (as part of a web application functionality - cannot use another standalone webapp). I am looking for something similar to the unix tail -f functionality. I looked at Apache Commons Tailer and…
Anand
  • 1,791
  • 5
  • 23
  • 41
2
votes
4 answers

Block remote desktop brute force

I have a server running Windows XP SP3 with port 3389 open for remote desktop. Every days in the security log file there are many entry with wrong login attempt. I would like to write a simple program that monitor the incoming connections on that…
TheGr8_Nik
  • 3,080
  • 4
  • 18
  • 33
2
votes
1 answer

How to store information? Database vs Data-Structure vs Log files

Recently I came across a scenario in a question: There are n websites with n pages each and n users visiting the sites....each visit of the user has to be saved and the pages he/she has visited ( not mentioned whether in database or log files, so…
NoobEditor
  • 15,563
  • 19
  • 81
  • 112
2
votes
1 answer

Powershell 3. Tailing a log file does not update output to the console as the log file updates

I want to tail a log file on Windows as this log file is updating. I am using PowerShell version 3.0. Other people say to do: Get-Content C:\some\server\logs\query.log -Tail 4 -Wait However, when I send new queries to the server (and hence update…
user1709076
  • 2,538
  • 9
  • 38
  • 59
2
votes
1 answer

Creating Build logs into the Specific project folder, while compiling a .sln file using MSbuild from Cmd console

i have a solution file which contains .vcxproj files. for all the .vcxproj project files the Build log file property is set to $(IntDir)$(MSBuildProjectName).log when i load the solution to VS2013 and from the solution explorer i invoke Rebuild…
2
votes
1 answer

Parse log file with spaces

I am trying to parse a logfile (text file saved as a *.log file) into Visual Basic 2013 Express' DataGridView. The log file uses spaces as its delimiter, but the message part of the log has spaces in it. Here is the layout of the log file: Date…
CampSoup1988
  • 139
  • 6
  • 21
2
votes
0 answers

How to create a log file in Matlab

I have inherited multiple scripts in Matlab and sometimes it's tricky to trace where the execution is happening. I would like to create a log file to show where it is in the execution, show warnings and show errors and date and time stamps. [Note:…
cloudviz
  • 971
  • 4
  • 15
  • 40
2
votes
2 answers

How can I delete first line in a logfile used for a Pylab plot?

I have a program that takes voltages vs. time which is put into a file, 'logfile.txt'. Later the logfile is used to make a plot in Pylab. The program works fine except that the very first line in the logfile needs to be deleted before plotting. I…
Rico
  • 329
  • 3
  • 9