Revert "Add routing for web display of logs."

This reverts commit e8eb665900.
This commit is contained in:
Luke Slater 2012-03-27 15:06:13 +01:00
parent c7124aa49e
commit c35ffe3228

View File

@ -16,11 +16,6 @@ var webInterface = function(dbot) {
//res.render('index', { });
});
// Displays any logs collected by the logging module
app.get('/log', function(req, res) {
res.render('log', { 'name': dbot.name, 'log': (dbot.log || []) });
});
// Lists the quote categories
app.get('/quotes', function(req, res) {
res.render('quotelist', { 'name': dbot.name, 'quotelist': Object.keys(dbot.db.quoteArrs) });