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.

How to remove all debug logging calls before building the release version of an Android app?

According to Google, I must "deactivate any calls to Log methods in the source code" before publishing my Android app …

android logging proguard android-log
MongoDB logging all queries

The question is as basic as it is simple... How do you log all queries in a "tail"able log …

mongodb logging
How to fix JSP compiler warning: one JAR was scanned for TLDs yet contained no TLDs?

When starting the application or compiling JSP via ant, Tomcat 7 Jasper complains about superfluous or misplaced JAR file. I got …

logging jar compilation tomcat7 tld
How to disable logging on the standard error stream in Python?

How to disable logging on the standard error stream in Python? This does not work: import logging logger = logging.getLogger() …

python logging console stdout
Save the console.log in Chrome to a file

Does anyone know of a way to save the console.log output in Chrome to a file? Or how to …

google-chrome console logging
How to output git log with the first line only?

I am trying to customize the format for git log. I want all commits to be shown in one line. …

git version-control formatting logging commit-message
Java Garbage Collection Log messages

I have configured java to dump garbage collection information into the logs (verbose GC). I am unsure of what the …

java logging garbage-collection
Logging best practices

I'd like to get stories on how people are handling tracing and logging in real applications. Here are some questions …

.net asp.net logging trace
Log4j2 configuration - No log4j2 configuration file found

Lately I decided to learn how to use the log4j2 logger. I downloaded required jar files, created library, xml …

java logging log4j2
How to write to a file, using the logging Python module?

How can I use the logging module in Python to write to a file? Every time I try to use …

python logging