use positions in interpreter

This commit is contained in:
Torsten Ruger
2018-05-20 15:52:13 +03:00
parent c0f10bb42b
commit ef2dc932ad
6 changed files with 11 additions and 6 deletions

View File

@ -458,7 +458,7 @@ module Util
# Default formatter for log messages
class Formatter
def call(severity, time, progname, msg)
"#{severity} #{progname} #{time.strftime("%M-%S-%L")} #{progname}::#{msg2str(msg)}\n"
"#{severity} #{progname} #{time.strftime("%M-%S-%L")}::#{msg2str(msg)}\n"
end
private