Logo

Programming-Idioms

  • Python
  • C++
  • Ruby
  • Java

Idiom #145 Print log line with datetime

Print message msg, prepended by current date and time.

Explain what behavior is idiomatic: to stdout or stderr, and what the date format is.

import java.util.logging.Logger;
Logger LOGGER = Logger.getLogger(MyClass.class.getName());

LOGGER.info(msg);

LOGGER should be declared private and final, at the beginning of the class.
import static java.lang.System.currentTimeMillis;
import static java.lang.System.out;
out.printf("%tc:  `%s`%n", currentTimeMillis(), msg);
import sys, logging
logging.basicConfig(stream=sys.stdout, level=logging.DEBUG, format="%(asctime)-15s %(message)s")
logger = logging.getLogger('NAME OF LOGGER')

logger.info(msg)

Default output is stderr.

Date format is ISO 8601.
require 'logger'
logger = Logger.new('logfile.log') # or STDOUT or STDERR
logger.info(msg)

Default Log format:

SeverityID, [DateTime #pid] SeverityLabel -- ProgName: message

The default can be customized, as well as the datetime format.
Console.WriteLine($"[{DateTime.Now}] {msg}");

Default behavior of Console.WriteLine is stdout. DateTime should respect system culture defaults.

New implementation...