Merge branch 'develop' into ace2_refactoring

This commit is contained in:
Matthias Bartelmeß 2012-04-05 22:28:16 +02:00
commit d61cdf57cc
3 changed files with 59 additions and 54 deletions

View file

@ -88,7 +88,12 @@ async.waterfall([
//let the server listen
app.listen(settings.port, settings.ip);
console.log("Server is listening at " + settings.ip + ":" + settings.port);
if(settings.adminHttpAuth){
console.log("Plugin admin page listening at " + settings.ip + ":" + settings.port + "/admin/plugins");
}
else{
console.log("Admin username and password not set in settings.json. To access admin please uncomment and edit adminHttpAuth in settings.json");
}
callback(null);
}
]);