]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/logging/server/server.factor
factor: trim using lists
[factor.git] / basis / logging / server / server.factor
index 5cfae1ab202555dd041a0cb77866328c625403c1..7326ea4b7ca4f301ddb5a0c65064bb9991a999ea 100644 (file)
@@ -3,8 +3,7 @@
 USING: assocs calendar calendar.format combinators
 concurrency.messaging continuations debugger destructors init io
 io.directories io.encodings.utf8 io.files io.pathnames kernel
-locals math math.parser ranges namespaces sequences
-strings threads ;
+math math.parser ranges namespaces sequences strings threads ;
 IN: logging.server
 
 : log-root ( -- string )
@@ -98,7 +97,7 @@ CONSTANT: keep-logs 10
 
 : log-server ( -- )
     [
-        init-namespaces
+        init-namestack
         [ log-server-loop ]
         [ error. (close-logs) ]
         recover t