diff src/luan/host/WebHandler.java @ 1336:7483108154bb

minor logging
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 14 Feb 2019 05:22:22 -0700
parents e0cf0d108a77
children 8b61c8c4e07a
line wrap: on
line diff
--- a/src/luan/host/WebHandler.java	Thu Feb 14 03:10:45 2019 -0700
+++ b/src/luan/host/WebHandler.java	Thu Feb 14 05:22:22 2019 -0700
@@ -32,11 +32,7 @@
 			new File(logDir).mkdirs();
 
 			Luan luan = new Luan();
-			try {
-				Log4j.newLoggerRepository(luan);
-			} catch(LuanException e) {
-				throw new RuntimeException(e);
-			}
+			Log4j.newLoggerRepository(luan);
 			initLuan(luan,dirStr,domain,true);
 			return new LuanHandler(luan);
 		}