Logo

Programming-Idioms

  • Python
  • Java
  • Go

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 "log"
log.Println(msg)

This prints to os.Stderr by default, with a datetime prefix.
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.
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);
Console.WriteLine($"[{DateTime.Now}] {msg}");

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

New implementation...