From d70c2e228517c60506a98b38d90cc3e939b6331c Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 28 Dec 2008 19:48:53 +0100 Subject: log: merged initLog() and open_log_files(). The logging library currently has 3 constructor functions: initLog(), open_log_files(), setup_log_output(), called in this order. Merged the first two. --- src/main.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index 564241577..b64a07f22 100644 --- a/src/main.c +++ b/src/main.c @@ -277,15 +277,13 @@ int main(int argc, char *argv[]) initStats(); tag_lib_init(); - initLog(options.verbose); + log_init(options.verbose, options.stdOutput); if (options.createDB <= 0) listenOnPort(); changeToUser(); - open_log_files(options.stdOutput); - path_global_init(); mapper_init(); initPermissions(); -- cgit v1.2.3