1
0
mirror of https://github.com/dani/vroom.git synced 2024-06-26 17:43:29 +02:00

Set log level just before starting the app

This commit is contained in:
Daniel Berteaud 2015-03-17 22:09:33 +01:00
parent 738ebe826c
commit 76086b39e4

View File

@ -64,9 +64,6 @@ $config->{'daemon.backend'} ||= 'hypnotoad';
$config->{'daemon.log_level'} ||= 'warn';
$config->{'daemon.pid_file'} ||= '/tmp/vroom.pid';
# Set log level
app->log->level($config->{'daemon.log_level'});
# Create etherpad api client if required
our $ec = undef;
if ($config->{'etherpad.uri'} =~ m/https?:\/\/.*/ && $config->{'etherpad.api_key'} ne ''){
@ -2141,6 +2138,8 @@ app->config(
}
);
# Set log level
app->log->level($config->{'daemon.log_level'});
app->log->info('Starting VROOM daemon');
# And start, lets VROOM !!
app->start;