diff src/luan/modules/http/serve.luan @ 1321:307e76ccd0d6

generalize separate logging
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 05 Feb 2019 22:36:55 -0700
parents 7fc83fd2a39a
children 5eb985d1411f
line wrap: on
line diff
--- a/src/luan/modules/http/serve.luan	Mon Feb 04 20:18:51 2019 -0700
+++ b/src/luan/modules/http/serve.luan	Tue Feb 05 22:36:55 2019 -0700
@@ -1,6 +1,5 @@
 local Io = require "luan:Io.luan"
 local Server = require "luan:http/Server.luan"
-local Logging = require "luan:logging/Logging.luan"
 
 
 if #{...} ~= 1 then
@@ -8,5 +7,4 @@
 	return
 end
 
-Logging.init()
 Server.serve(...)