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.

learn more… | top users | synonyms (3)

0
votes
0answers
9 views

where is install log file location in redhat 6 ( aws ec2)

I need to know what the install log file location in ami/redhat 6 aws ec2 ? Does anyone know where that file is? thanks
0
votes
0answers
11 views

Accessing a list of defined preprocessor directives using reflection

I'm trying to implement a decent system for enable conditional compiling of logging methods. I'd like to enable/disable calls to log functions on a per-class or per-group selection. I know there how ...
3
votes
0answers
11 views

Grouping Appenders At Logback?

I have two appenders. One of them is DB appender and the other one is SMTPAppender. When I log a string with a special marker I want to use both my custom db appender and SMTPAppender. However I don't ...
0
votes
0answers
10 views

IIS Custom Duration Logging

My ASP.NET Web Application serves on IIS 7.0 and .NET 4.0 I want to measure total duration for "any request to my web services methods (asmx)" This log needs to include some custom data (for example ...
1
vote
1answer
22 views

Where does logging fit in the model view controller architecture?

I would like to log communications activity and, as part of logging, display communications history in a window on the screen. I don't want the communications modules to know about the screen of ...
0
votes
0answers
7 views

Black Ops Log File Translation

I have been working on a black ops rcon system. Im up to the part of reading the log files. I have access to the log files but translating what they mean has been hard. Log File Example 1371211561 ...
0
votes
1answer
25 views

Need a quick way of removing partial duplicates from a log

I'm using a bash script to grep out some lines from a log file. The basic format of this log file is: field1: value1, field2=value2, field3=value3, field4=value4,value5,value6, field5=value7 ...
2
votes
1answer
14 views

Python logging: display only information from debug level

For my first logging experiment in Python (2.7) I'm creating a basic logging module, which will quickly create a logger for (so I won't have to configure it per module/class). What I want to do is to ...
2
votes
1answer
14 views

Django log filter for slow SQL queries

I am currently logging all SQL queries thanks to the following LOGGING settings: LOGGING = { 'version': 1, 'disable_existing_loggers': False, 'filters': { 'require_debug_false': { ...
0
votes
0answers
5 views

Logging different level for a specific class using logback?

Can I override a logging level for a specific class only using logback.xml? i.e everything remains in INFO, except for one class which will log in DEBUG. I appended this after the default one, but ...
0
votes
1answer
13 views

how to use the twistd log system for logging my data?

I am interested in the main features of the twistd logging system, and I'm using it to log some data i need, much more that logging the real state of the twisted application. BTW it is very noisy, ...
0
votes
1answer
9 views

Can't Restart MySQL After Editing my.cnf on Mac OS X 10.8.3

I am trying to enable logging on MySQL on my Mac, OS X version 10.8.3. Everywhere I searched, I get the same answer, i.e. to add the following to my.cnf: [mysqld] general_log=1 ...
0
votes
0answers
9 views

Turning off Quartz job logging

In my application, quartz job is scheduled as soon as the application is deployed. I have two log files home-log-search.log and home-log-app.log, both for specific logging. Search log file is only to ...
0
votes
0answers
12 views

Cannot log to logcat in cpp code, JNI

I'm using Android JNI and trying to do the most basic logging... However it just doesn't work. [JNI cpp] #include <android/log.h> #define LOG_TAG "FaceDetection/DetectionBasedTracker" ...
0
votes
1answer
16 views

Maven Log viewer / Analyzer?

I googled for it. I do not see anything. I just want to view the maven log in a better way. Preferably a standalone tool not as an eclipse plug-in. Anyone any idea?
0
votes
1answer
12 views

Application Error deploying on Heroku

I deployed a basic app shell on Heroku, but it is giving me this error. Application Error An error occurred in the application and your page could not be served. Please try again in a few moments. ...
0
votes
0answers
7 views

tnameserv failing to start on new build of Java 7

I built the Java 7 sdk from source and now am trying to run the JCK tests on the new java install. When I try to start the tnameserv service it is failing with the following error: Exception in ...
0
votes
1answer
5 views

Missing log data - Standalone JBoss

Ported a web app from another J2EE appserver to JBoss Enterprise Application Platform 6.1.0.GA (Redhat Enterprise Linux 6). I am running an out-of-the-box standalone server. Servlets and Jsp use ...
0
votes
0answers
10 views

How should I handle logging on an iis server hosting a custom service?

I have a server that is being hit quite frequently. I have logging in place that sends it to the event viewer but, and I'll be nice about this, it's crap for searching and debugging. Anyhow, I ...
0
votes
0answers
9 views

Connection error running heroku logs from terminal

I'm on OS X running Mountain Lion. I have a Rails app on heroku. When I run heroku logs --tail --app app_name I receive this error ...
0
votes
0answers
10 views

How to record log info to flat file + Event Log

I have a 3rd-party app that logs (verbosely) to the users' Appdata folder. I'd like to augment that behavior to also record Errors to the EventLog. How can I accomplish this? Note that the app's ...
0
votes
2answers
12 views

Reading the last changes of a text file after FileSystemWatcher detects change

Relating to my earlier post: Smartest way to monitor log-files in realtime? I want a FileSystemWatcher to detect changes of a text file (logfile) and afterwards I want it to show me the latest ...
1
vote
1answer
16 views

Symfony2, Is there any way to use Monolog to split the log files every day?

I would like to use Monolog in symfony2 application for logging, but my question is how can I split the file every day instead of appending to the same file? I would like my log file to be somthing ...
1
vote
1answer
27 views

Trimming a log file that is being tailed in Ruby

Is it possible to trim lines from the top of a .log file while another process is doing a tail -f on it using ruby?
0
votes
1answer
48 views

Smartest way to monitor log-files in realtime?

I need to write a realtime monitoring application, which stores information from log-files into a gridview. + that they can be process further from other features/functions in my application. I've ...
0
votes
1answer
19 views

How to extract lines from a text file which contains ERROR key word in the sentence using VB6

How to extract lines from a text file which contains ERROR key word in the sentence using VB6. I am very new to VB6 and want to extract multiple lines from a log file and put them in the last of log ...
0
votes
2answers
23 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
30 views

python log stderr and stdout to a file [duplicate]

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
11 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
17 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
11 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
22 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
39 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
1answer
29 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
20 views

Is there any merit in 'Aspect Based Tracing'?

Just to be clear, my meaning of 'aspect' is a horizontal factor of the application's functions, not intercepting all method calls as in Aspect Oriented Programming. I have just discovered the beauty ...
0
votes
1answer
10 views

How to set and use more than one formatter for a trace listener in EntLib log app block

I have configured EntLib 5 logging app block for creating logs for a WinForms app. The logging configuration is configured like so: <loggingConfiguration name="Logging Application Block" ...
0
votes
1answer
19 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
1answer
10 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
77 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
12 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
2answers
42 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 ...
0
votes
1answer
28 views

Log duration of an ASP Web API action

I am using an ActionFilter to log all action calls of my ASP.NET Web API project. The OnActionExecuted method tells a lot about what's been happening. I just can't figure out how to find an efficient ...
0
votes
1answer
59 views

Task.IsCompleted stays false even when CancelIsRequested

In my LogManager, I have an async task that runs a while loop to write log information to a text file (and add it to a collection). When I try to cancel this task, the loop seems to stop (I tried with ...
0
votes
1answer
9 views

Logging ongoing Fiddler-captured traffic

I am capturing traffic for a third party application and I wish to output the Fiddler logs to be consumed in Splunk. The calls are not logged in the application's current logs so capturing the ...
0
votes
1answer
23 views

Get the complete latest log

In my desktop application, I have a button called Report Issue. Clicking which, my application collects all the important information, puts it in a folder and then zips it. This zip file can be mailed ...
0
votes
0answers
24 views

How to convert Logj4 logging level to JUL logging level?

I'm trying to convert Log4j Level to JUL Level, and would like to use some out-of-the-box utility class. I've found UtilLoggingLevel, but can't figure out how to use it for this particular case. Any ...
-1
votes
2answers
19 views

Log4j basic understanding

I am starting to learn log4j. Could someone explain what the following line does or means? log4j.rootLogger = DEBUG, FILE Are there any recommendation on tutorials for log4j properties file?
0
votes
0answers
11 views

passing values to nlog custom target

I have created a custom nLog target and it is working except for one thing. I want to pass the logged in person name to the target, I have created a property called ApplicationUser which will pick up ...
1
vote
2answers
33 views

Making log file in batch after a MOVE operation

I just need some help with creating a log file for a batch script I'm running at the moment. As I move files from 1 server to another it would be handy to know when things have been moved over. At ...

1 2 3 4 5 209
15 30 50 per page