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

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