Fix FORMAT definition for logging module.
authormeisterluk <admin@lukas-prokop.at>
Sat, 4 May 2013 19:57:57 +0000 (21:57 +0200)
committerMichael Prokop <mika@grml.org>
Mon, 13 May 2013 09:04:14 +0000 (11:04 +0200)
commitcdb4aa447297942b280ff7e91dd135c397a43db7
treea98178e193bef577f1c0f8b1c412c71c97f80727
parent7b409afb354c914dfb74119136d4d36e43011508
Fix FORMAT definition for logging module.

Level does not specify that only messages of this level are printed
out, but the minimum level. So a definition like this

    FORMAT = "Debug: %(asctime)-15s %(message)s"
    FORMAT = "%(asctime)-15s %(message)s"

misleads the user into thinking that every message printed out is
actually a debug message, which is not true.
We now use "%(message)s" for everything except verbose mode which
annotates the timestamp to the message.
grml2usb