Tagged Questions
1
vote
1answer
33 views
Rolling file implementation
I am always curious how a rolling file is implemented in logs.
How would one even start creating a file writing class in any language in order to ensure that the file size is not exceeded.
The only ...
1
vote
1answer
32 views
trouble greping logs and files [closed]
I've tried appending unsuccessfully in other threads .. I'll make my own one then :)
Here's my main issue : I'm trying to exclude the variable named $exclusion from the resulting files texttomatch ...
0
votes
2answers
42 views
Sharing violation on path for my logmanager [duplicate]
I'm using this code for saving logs in may C# monotouch application:
public static void writeExeption(string message){
string path= StorageClass .LogsPath ;
string filepath= ...
1
vote
2answers
10 views
sending data to log file - shell script
Can you please explain these expressions to me:
cd - 1>> $LOG // Q - what 1 represent ?
./build_we2s all 1>> $LOG 2>> $LOG // Q - what 2 represent ?
Thanks in advance.
0
votes
2answers
34 views
I want to check the contents off multiple folders and logs the results with one batch file
I have a running program that batch processes a heap of documents and places them in a DMS. When the program has finished processing each document, it places it in another folder. It then can either ...
0
votes
1answer
44 views
Writing to a file at specific time intervals in different threads for a simple keylogger
import pythoncom , pyHook, time
temp_keylogs = ''
def OnKeyboardEvent(event):
global temp_keylogs
key = chr(event.Ascii)
temp_keylogs += key
hm = pyHook.HookManager()
hm.KeyDown = ...
0
votes
1answer
32 views
redirecting stdout to file not working
FILE* logfile;
freopen_s(&logfile, "log.txt", "w", stdout);
printf("test");
fclose(stdout);
Im having an odd problem with Visual Studio. When I execute the above code in a console app the log ...
-1
votes
0answers
43 views
CakePHP - Reading a log file
First of all, please keep in mind that I'm new to Cake.
So I have to read a log file and store some data in my DB. I dont need to store everything, only rows which contain "CRITICAL".
This log file ...
0
votes
1answer
91 views
Batch script to copy latest log file from server to client system then rename it
I am trying to setup a batch script that will copy over the latest IIS logs from our Exchange Client Access Server over to my system. That way I can analyze the logs while keeping the original log ...
4
votes
1answer
98 views
What's the most pythonic way to iterate over all the lines of multiple files?
I want to treat many files as if they were all one file. What's the proper pythonic way to take [filenames] => [file objects] => [lines] with generators/not reading an entire file into memory?
We ...
1
vote
2answers
56 views
Redirecting System.out and appending to an existing file
I have a Java program which runs every 10 minutes. I want to capture a log of this process, for example consider (what essentially my program does):
public static void someFunction()
{
...
2
votes
1answer
47 views
Easiest way to save stdout into 5min files
I have process and I wonder how to save its output text stream into files/logs created every 5min. Thank you
0
votes
1answer
38 views
Read log files on JBoss7
I have an application running on JBoss7 and creating log files in /standalone/log. For security reasons I not allowed to browse Jboss directories.
Is there any build-in application to read these logs ...
1
vote
1answer
55 views
python logging module is not writing anything to file
I'm trying to write a server that logs exceptions both to the console and to a file. I pulled some code off the cookbook. Here it is:
logger = logging.getLogger('server_logger')
...
0
votes
1answer
30 views
Best log file analyzer for forensics needs
i need a log file parser to search for evidences (keywords) mostly for foresics investigation. With GUI, and allow me to open multiple files to search trough them using the given words evidence.
To ...
0
votes
1answer
53 views
LOG4PHP File size Error
I am running this script as a cron job on GoDaddy Shared Hosting (php 5.3.13), and am using log4php. The script seems to run fine, and finish. But then when log4php tries to finish up, it throws this ...
0
votes
1answer
89 views
LogParser Lizard
I am using LogParser Lizard to parse Log4Net files and when I am trying to do a query such as: SELECT * FROM "C:\Logs*.log". I get an error saying "The process cannot access the file [...] because it ...
0
votes
2answers
131 views
Parsing Tomcat Log files
Hello Everyone,
I have been trying to this from a week or so. But not figure out a way. I work with tomcats and my client regularly send me log files in 2 to 3GB's stating there was a ...
1
vote
1answer
130 views
Python logging - check location of log files?
What is the methodology for knowing where Python log statements are stored?
i.e. if i do:
import logging
log = logging.getLogger(__name__)
log.info('Test')
Where could I find the logfile? Also, ...
0
votes
0answers
108 views
Error writing in a log file using logcat comand programatically. Using exec command
I have been a lot of troubles creating a log file. It worked for me in another program but not in this one and I'm getting crazy because I wrote exactly the same...
I want to store the logcat in a ...
0
votes
0answers
61 views
openning logfile with boost and append some entries
I've to write a little logger for custom entries. I use a boost class "boost::filesystem::fstream" for read and write. At first I open a logfile
_file.open( boost::filesystem::path( _fileName ...
0
votes
1answer
127 views
Monitor a Log File in Real Time with VB? (VS 2012 Express & Win 7)
I'm trying to create a small form/app in VB that will monitor a log file. Another application constantly writes to the log, and I'd like to somehow read anything new that was written and display it in ...
0
votes
2answers
446 views
Error downloading file on internal storage android
As I was thinking that downloading is pretty straightforward I am encountering a error when I try to download an xml file from the internet and save it on the internal memory. I use the internal ...
1
vote
2answers
238 views
logger configuration to log to file and print to stdout
I'm using Python's logging module to log some debug strings to a file which works pretty well. Now in addition, I'd like to use this module to also print the strings out to stdout. How do I do this? ...
1
vote
1answer
75 views
How to use logging with python's fileConfig and configure the logfile filename
I have a logging configuration file for logging to console and a file with different formats and levels. In my python script I can load this configuration and basically console and file output are ok.
...
2
votes
1answer
474 views
Python using basicConfig method to log to console and file
I don't know why this code prints to the screen, but not to the file? File "example1.log" is created, but nothing is written there.
#!/usr/bin/env python3
import logging
...
0
votes
0answers
81 views
FileHandler.level not overriding the global level
I'm using jdk logging and i've the below in the logging.properties:
handlers= java.util.logging.FileHandler
.level= INFO
java.util.logging.FileHandler.level = FINEST
...
1
vote
5answers
353 views
Log File Rotation IOException
I've got a log file rotation function that looks like this:
private static void RotateLogs()
{
FileInfo LogFile = new FileInfo(@"C:\temp\dataTransferErrorLog.txt");
if ...
1
vote
4answers
253 views
Creating a log file only when an error or exceptions occured without using log4j
I want to maintain a log file or txt file ,where I am able to maintain the exception details as well as some other details either in txt or log file.The scenario is like this
try {
.......
} ...
3
votes
2answers
347 views
Log file creation using javascript
Is there any way to create Log file creation using javascript. I would also like to know if we can create that server side or need to call any program to upload it manually time to time. There are ...
0
votes
2answers
85 views
Basics on &LogIt() [duplicate]
Possible Duplicate:
When should I use the & to call a Perl subroutine?
I am new to Perl development and just going through sample code.
I came across &LogIt() where I have few ...
1
vote
4answers
421 views
Writing (logging) into same file from different threads , different functions?
In C++ is there any way to make the writing into file thread safe in the following scenario ?
void foo_one(){
lock(mutex1);
//open file abc.txt
//write into file
//close file
unlock(mutex1);
}
void ...
1
vote
0answers
80 views
Is there any difference between 'manuall'y opening and closing a log file and opening/closing it via a 'program'?
Here is how I can manually create a log file when using windows.
open notepad
write .LOG in capital
close the file
Next time when you open the file,automatically an entry of the current date/time ...
0
votes
3answers
215 views
C#.NET - Error Logging and Relative File Paths
I have a class in C# that saves an error message in a log file in case of an exception. Now I want to save the log file in the same folder containing the application's (in my case, a website) files. ...
0
votes
1answer
372 views
How to store Logs in a txt file using the android.util.log
I know this topic has been talked a lot but not in this meanings.
I need to store the logs in a .txt file but I cannot use the log4j or any other class but android.util.log
I have this solution but ...
0
votes
1answer
61 views
iPad: Create a logfile that gets continuously updated?
I want to create a file for my logs. But how can I continue on writing logs into one single file? For the first use I create the file and save my first log in it. But how can I continue on writing on ...
0
votes
1answer
65 views
Log file modifications in Windows
I'm trying to find a way to log the modification of a simple textfile into a log in Windows.
I just can't seem to solve it using the auditing tool for Event viewer since it only records authorization, ...
2
votes
1answer
109 views
Best approach for sending log files with log4net
What is the best approach for sending whole files (log files etc) in a logging mechanism?
Ideally we would like to have a mechanism, not only to send some logging info (exception message, class and ...
0
votes
2answers
311 views
vb.net Searching for specific lines within large .log files
I'm reading from 1-5mb log files outputting to a textview and also searching for specific lines outputting to another textview. Currently it takes about a minute for just a 1mb file. Does anyone ...
1
vote
1answer
192 views
Python log viewer GUI
I am new with python adn I'd like to build a GUI where I could see three or four logs files at the same time generated from any others applications. To see the log files from the other application I ...
0
votes
1answer
430 views
How can i rename the log file with Modified date by using Rolling Flat File Trace Listener
My desire output is, if "rolling.log" file was created and modified by 26-06-2012, next day(27-06-2012) that file should be renamed with "rolling-26-06-2012..log". Now output is ...
0
votes
1answer
99 views
Logging to two files with different settings
I am already using a basic logging config where all messages across all modules are stored in a single file. However, I need a more complex solution now:
Two files: the first remains the same.
The ...
0
votes
1answer
45 views
Get commit log about only 1 folder
What I want to do is get a commit log of all the changes pertaining only to 1 folder in a repository. How, if at all, is this possible?
0
votes
1answer
324 views
python read last three lines from kernel log
I want to read the last three lines from the kernel log /var/log/messages in a loop.
for i in xrange(0,100):
# do_stuff()
file = open('/var/log/messages')
lines = file.readlines()[-3:]
...
2
votes
4answers
2k views
Creating a Log File in an iOS app
So in my app I have a bunch of data that I'd like to write to a log file, and then display it within a UITextView when I click a button. I know how to toggle the UITextView, but I have no idea how to ...
0
votes
3answers
174 views
Writing log files using Java EE
I need to create application logs to capture users signing in/out and their requests, for that.
We're using Java EE, and thought that creating new log files (new txt file for each day) would be a ...
0
votes
2answers
68 views
input not being sent to log
So here's the short story: I have a comment box that holds user input (like any regular comment box, I suppose). I want to send this user input to a log file. The problem is, this isn't happening.
...
1
vote
1answer
184 views
How to append content to an existing log file without overwriting using windows command line?
I have a batch file where I would like to append to the same log file, without overwriting, from two or more build files. I intend to write something like below:
SET logdir=C:\Logs\BuildLogFile.txt
...
0
votes
1answer
88 views
Managing log file size
I have a program which logs its activity.
I want to implement a log file mechanism to keep the log file under a certain size, lets say 10 MB.
The log file itself just holds commands the program ...
0
votes
2answers
4k views
Error: “setFile(null,false) call failed” when using log4j
I have added log4j.properties file in source folder of project but I am still getting a log4j:error.
Here is my Log4j.properties file:
.rootCategory=DEBUG, R, O
# Stdout
...

