Top "Logging" questions

Computer data logging is the process of recording events in a computer program or computer system, 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.

Can I change the name of `nohup.out`?

When I run nohup some_command &, the output goes to nohup.out; man nohup says to look at info …

bash logging nohup
socket programming multiple client to one server

How do you handle multiple client to connect to one server? I have this LogServer.java import javax.net.ssl.*; …

java sockets applet logging port
log4j logging hierarchy order

What is the hierarchy of log4j logging? DEBUG INFO WARN ERROR FATAL Which one provides the highest logging which …

logging log4j
How to set level logging to DEBUG in Tomcat?

I would like to set level logging to DEBUG in tomcat but in console nevertheless only INFO and WARN output. …

debugging tomcat logging tomcat7 tomcat6
How do I do logging in C# without using 3rd party libraries?

I would like to implement logging in my application, but would rather not use any outside frameworks like log4net. …

c# .net winforms performance logging
How do I see the commit differences between branches in git?

I'm on branch-X and have added a couple more commits on top of it. I want to see all the …

git logging branch git-log
How do I enable/disable log levels in Android?

I am having lots of logging statements to debug for example. Log.v(TAG, "Message here"); Log.w(TAG, " WARNING …

android logging
slf4j: how to log formatted message, object array, exception

What is the correct approach to log both a populated message and a stack trace of the exception? logger.error( "\…

java exception logging slf4j
Difference between logger.info and logger.debug

What is the difference between logger.debug and logger.info ? When will logger.debug be printed?

java logging log4j
How to do a JUnit assert on a message in a logger

I have some code-under-test that calls on a Java logger to report its status. In the JUnit test code, I …

java logging junit assert