]> gitweb.factorcode.org Git - factor.git/commitdiff
logging.server: use rfc3339.
authorJohn Benediktsson <mrjbq7@gmail.com>
Thu, 10 Dec 2020 03:08:32 +0000 (19:08 -0800)
committerJohn Benediktsson <mrjbq7@gmail.com>
Thu, 10 Dec 2020 03:08:32 +0000 (19:08 -0800)
basis/logging/server/server.factor

index 770d3011b9e11fa54c68fbd58c5ea709e9cd4e37..9357b2b98120044230445579700f68ec844fc95a 100644 (file)
@@ -36,7 +36,7 @@ SYMBOL: log-files
     finally ; inline
 
 : timestamp-header. ( -- )
-    "[" write now write-timestamp "] " write ;
+    "[" write now write-rfc3339 "] " write ;
 
 : multiline-header ( -- str ) 20 CHAR: - <string> ; foldable