all repos — litestore @ 4f24524b636717eeb5c87646d93284b2a51d917b

A minimalist nosql document store.

Merge branch 'master' of https://github.com/h3rald/litestore
h3rald h3rald@h3rald.com
Sat, 17 Jun 2017 23:13:20 +0200
commit

4f24524b636717eeb5c87646d93284b2a51d917b

parent

2a3389e85c938afd84abee048d5382f923d7fd59

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M lib/logger.nimlib/logger.nim

@@ -7,9 +7,9 @@ types

proc currentTime*(plain = false): string = if plain: - return getTime().getGMTime().format("yyyy-MM-dd' @ 'hh:mm:ss") + return getTime().getGMTime().format("yyyy-MM-dd' @ 'HH:mm:ss") else: - return getTime().getGMTime().format("yyyy-MM-dd'T'hh:mm:ss'Z'") + return getTime().getGMTime().format("yyyy-MM-dd'T'HH:mm:ss'Z'") proc msg(logger: Logger, kind, message: string, params: varargs[string, `$`]) = let s = format(message, params)