Computer data logging is the process of recording events in a computer program, usually with a certain scope, in order to provide an audit trail that can be used to understand the activity of the system and to diagnose problems.
-1
votes
1answer
14 views
jQuery user activity logging
I want to log user activity.
According other users response on StackOverflow I made a small jQuery library:
var stop_timeout = false;
$(window).blur(function(){
elvis('left the building since ');
...
1
vote
1answer
15 views
python log stderr and stdout to a file
Just wanted to pick your brains on this. I have several subprocesses running and I wanted to print the stderr and stdout to a file. I've done this so far:
def write_to_stderr_log(process):
...
0
votes
0answers
10 views
How can I catch tomcat logs by using java.util.logging?
How can I catch tomcat logs by using java.util.logging?
I haven't got idea how to bind logs to my handler
0
votes
2answers
10 views
how to prevent werkzeug from logging
I'm using flask and werkzeug. To monitor sql statements emitted from sqlalchemy I've set up a logging.basicConfig() logger and attached the before_cursor_execute event to monitor SQL statements. But ...
0
votes
0answers
6 views
DDLogCVerbose vs. DDLogVerbose
What are differences between DDLog(Error|Warn|Info|Verbose) and DDLogC(Error|Warn|Info|Verbose) in Cocoa Lumberjack?
The first calls LOG_OBJC_MAYBE, second LOG_C_MAYBE, but what is the exact ...
0
votes
0answers
9 views
how to set phpunit logging via ant
is there a best practice switching the phpunit logging on/off in the phpunit.xml via ant? Atm I use two different phpunit.xml files (one for local tests without logging the other with logging enabled ...
2
votes
0answers
20 views
Android: How to get logging information if device freezes / hangs?
I have written an app and on some devices, using the app freezes the system. My main problem is, that I do not get any log information, because as soon as the device is frozen, logging completely ...
0
votes
1answer
30 views
Open source logger with client server architecture
I need a logger which has multiple client and one server. The server should be scalable.
The logging server can be of any language but client should be on C/C++. I will run in Linux ...
1
vote
0answers
12 views
How to get logging information if device freezes / hangs?
I have written an app and on some devices, using the app freezes the system. My main problem is, that I do not get any log information, because as soon as the device is frozen, logging completely ...
1
vote
1answer
12 views
Is there any merit in 'Aspect Oriented Tracing'?
I have just discovered the beauty of the .NET Trace infrastructure, and in particular, the TraceSource object. Like the noob at this I am, I gave each class it's own TraceSource, to trace method ...
0
votes
1answer
15 views
Log4net dynamic separate log does not work?
I have on config file as follow:
<configuration>
<configSections>
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" />
...
0
votes
0answers
3 views
Can I see in the Weblogic Administration Console the logs of a logger that I created?
I mean if I use a Java logger in my application..
private static Logger LOGGER = Logger.getLogger("InfoLogging");
LOGGER.info("Logging an INFO-level message");
Is there a way to access to the logs ...
5
votes
2answers
68 views
Python : why a method from super class not seen?
i am trying to implement my own version of a DailyLogFile
from twisted.python.logfile import DailyLogFile
class NDailyLogFile(DailyLogFile):
def __init__(self, name, directory, rotateAfterN = ...
0
votes
1answer
11 views
Python : how to dynamically create logging files
I am writing unit testcase in python. I want to create custom logging in python. When I run a testcase, I want two new files to be created, one saves info logs and the other saves debug logs. I am ...
2
votes
1answer
26 views
Changing time format inside twisted matrix log
how may i change the time format of the logging system used in TwistedMatrix ?
i have noticed from
http://twistedmatrix.com/trac/browser/tags/releases/twisted-11.0.0/twisted/python/log.py#L389
that ...