From 35bbac596b75f2b92aeec8b4b19ad781914dc366 Mon Sep 17 00:00:00 2001 From: Wouter R Date: Wed, 23 Mar 2016 17:08:29 +0100 Subject: [PATCH] Fix day/month order in firmware log timestamp. --- src/util/logger.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/logger.lua b/src/util/logger.lua index 80604e9..b1ddc16 100644 --- a/src/util/logger.lua +++ b/src/util/logger.lua @@ -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