diff options
author | Max Kellermann <max@duempel.org> | 2008-12-28 19:48:53 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-12-28 19:48:53 +0100 |
commit | d70c2e228517c60506a98b38d90cc3e939b6331c (patch) | |
tree | afa7e66f2f9de110ebaa2d1c5229787187e3a8e2 /src/log.h | |
parent | caf47f7893a666a9ea289f2ffdbce528d4ba75bd (diff) | |
download | mpd-d70c2e228517c60506a98b38d90cc3e939b6331c.tar.gz mpd-d70c2e228517c60506a98b38d90cc3e939b6331c.tar.xz mpd-d70c2e228517c60506a98b38d90cc3e939b6331c.zip |
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.
Diffstat (limited to 'src/log.h')
-rw-r--r-- | src/log.h | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -29,12 +29,10 @@ G_GNUC_PRINTF(1, 2) void DEBUG(const char *fmt, ...); G_GNUC_PRINTF(1, 2) void WARNING(const char *fmt, ...); G_GNUC_PRINTF(1, 2) G_GNUC_NORETURN void FATAL(const char *fmt, ...); -void initLog(bool verbose); +void log_init(bool verbose, bool use_stdout); void setup_log_output(bool use_stdout); -void open_log_files(bool use_stdout); - int cycle_log_files(void); void close_log_files(void); |