adding a debug library
[nodejs-repoproxy.git] / proxy.js
index 770e7dc..bbb75ce 100644 (file)
--- a/proxy.js
+++ b/proxy.js
@@ -1,12 +1,22 @@
 var http = require("http");
 var config = require("./lib/config.js");
 var router = require("./lib/router.js");
+var cache = require("./lib/cache.js");
+var maintain = require("./lib/maintain.js");
+var log = require("./lib/log.js");
+var debug = require("./lib/debug.js");
 
 
 // first we load the config...
+log.info("Loading configuration");
 config.loadConfig("./repos.conf");
 
-console.log("globals: ", global.repoproxy);
+// start the maintenance timer
+log.info("Starting cache maintenance timer");
+maintain.startTimer();
+
+// start the debug timer, if we should
+debug.startDebugTimer();
 
 // next we start our main request loop
 http.createServer(router.routeRequest).listen(global.repoproxy.listenPort);