Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Ruby

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.

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...