logo
Articles

Understanding and Utilizing Logging Levels in Software Development

cover

Logging is a critical aspect of software development and maintenance. Proper logging helps developers and tech leads understand the state of an application, diagnose issues, and ensure smooth operation. Logging levels provide a mechanism to categorize the importance and nature of the log messages generated by an application. This article delves into the different logging levels, their appropriate usage, and provides examples in Node.js and Spring Boot Java.

Logging Levels Explained

The common logging levels, in increasing order of severity, include:

  1. TRACE

    • Purpose: Capture the most granular details, useful primarily for diagnosing problematic situations or debugging.
    • Example: Entering or exiting a particular method, variable values within loops.
  2. DEBUG

    • Purpose: Provide detailed information on the flow of the application, useful for debugging issues.
    • Example: Initialization of resources, parameters for function calls, query strings.
  3. INFO

    • Purpose: Highlight the progress of the application with informational messages.
    • Example: Server startup/shutdown, configuration assumptions, user logged in/out.
  4. WARN

    • Purpose: Indicate unexpected situations that may not immediately affect the application but could pose future problems.
    • Example: Configuration elements deprecated, misuse of an API, undesirable but not necessarily incorrect behavior.
  5. ERROR

    • Purpose: Log errors that might prevent the application from functioning correctly.
    • Example: Database unavailable, missing required file, null pointer exception.
  6. FATAL

    • Purpose: Log severe errors that cause the application to abort.
    • Example: Critical service didn't start, out of memory, system crash.

Best Practices for Using Logging Levels

During Development

  • TRACE and DEBUG levels are your allies for tracking down issues and understanding application flow.

Production Environment

  • Use INFO or WARN levels to avoid being overwhelmed with log entries while still being informed of unexpected behavior.
  • ERROR and FATAL levels are crucial to notify critical issues.

During Troubleshooting

  • Temporarily increase logging level to DEBUG in production systems if a problem isn’t immediately clear.

Performance Considerations

  • TRACE and DEBUG levels can generate a lot of log data, affecting performance. Use these levels judiciously, especially in high-transaction environments.

Security Considerations

  • Avoid logging sensitive information like passwords, personal user data, and other confidential information.

Example Configuration in Spring Boot

Here’s a sample configuration for logging in a Spring Boot application:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<!-- JSON Console Appender -->
<appender name="JSON_LOG" class="ch.qos.logback.core.ConsoleAppender">
<layout class="ch.qos.logback.contrib.json.classic.JsonLayout">
<jsonFormatter class="ch.qos.logback.contrib.jackson.JacksonJsonFormatter">
<prettyPrint>false</prettyPrint>
</jsonFormatter>
<timestampFormat>yyyy-MM-dd' 'HH:mm:ss.SSS</timestampFormat>
<appendLineSeparator>true</appendLineSeparator>
</layout>
</appender>
<!-- Standard Console Appender -->
<appender name="STANDARD_LOG" class="ch.qos.logback.core.ConsoleAppender">
<layout class="ch.qos.logback.classic.PatternLayout">
<Pattern>%d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n</Pattern>
</layout>
</appender>
<!-- Logging Configuration for 'local', 'dev', and 'test' profiles -->
<springProfile name="local | dev | test">
<root level="INFO">
<appender-ref ref="STANDARD_LOG"/>
</root>
</springProfile>
<!-- Logging Configuration for 'prod' profile -->
<springProfile name="prod">
<root level="INFO">
<appender-ref ref="JSON_LOG"/>
</root>
</springProfile>
</configuration>

Example Configuration in Node.js (ESM Syntax)

Here’s a sample configuration for logging in a Node.js application using the winston library with ESM syntax:

import { createLogger, format, transports } from 'winston';
const { combine, timestamp, json, printf, colorize, simple } = format;
// Custom log format
const logFormat = printf(({ level, message, timestamp }) => {
return `${timestamp} ${level}: ${message}`;
});
// Logger configuration
const logger = createLogger({
level: 'info',
format: combine(
timestamp({
format: 'YYYY-MM-DD HH:mm:ss'
}),
json()
),
transports: [
new transports.Console({
format: combine(
timestamp(),
logFormat
)
}),
new transports.File({ filename: 'error.log', level: 'error' }),
new transports.File({ filename: 'combined.log' })
],
});
// Development environment logging
if (process.env.NODE_ENV !== 'production') {
logger.add(new transports.Console({
format: combine(
colorize(),
simple()
)
}));
}
export default logger;

Authors

Ramesh Doddi

Ramesh Doddi

CTO | Product Development
logo

Articles

USA Headquarters

41449 Pelham Ct, Fremont CA 94539 USA

+1 408-461-8085

[email protected]

© 2024 iRemote (e101c2f)