Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • 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 static java.lang.System.currentTimeMillis;
import static java.lang.System.out;
out.printf("%tc:  `%s`%n", currentTimeMillis(), msg);
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.
Console.WriteLine($"[{DateTime.Now}] {msg}");

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

New implementation...