mirror of
https://github.com/Doodle3D/doodle3d-firmware.git
synced 2024-11-05 06:03:23 +01:00
Fix day/month order in firmware log timestamp.
This commit is contained in:
parent
8fb0eba9e6
commit
35bbac596b
@ -44,7 +44,7 @@ end
|
||||
|
||||
local function log(level, module, msg, verboseFmt)
|
||||
if level <= logLevel then
|
||||
local now = os.date('%m-%d %H:%M:%S')
|
||||
local now = os.date('%d-%m %H:%M:%S')
|
||||
local i = debug.getinfo(3) --the stack frame just above the logger call
|
||||
local v = verboseFmt
|
||||
if v == nil then v = logVerboseFmt end
|
||||
|
Loading…
Reference in New Issue
Block a user