search for: log_info0

Displaying 3 results from an estimated 3 matches for "log_info0".

Did you mean: log_info
2005 Feb 20
2
ices2 not re-connecting on live stream
On Sun, 2005-02-20 at 12:15, Fr?d?ric Bri?re wrote: > I've been running ices2 like this 24/7 for months now, only restarting > it once a week for log rotation. Never had a problem since. setting <logsize> will cause an automatic log rotation when a certain file size has been reached. It renames <logfile> to <logfile>.1 then opens a new file <logfile> karl.
2005 Feb 20
0
ices2 not re-connecting on live stream
...ns a new file <logfile> Since all my other logs are rotated on a daily/weekly basis, I want my ices logs to behave in the same way. Nevertheless, this thread finally gave me the incentive to fix ices so that it rotates logs on SIGHUP, which is much nicer. Here's the patch: (The second LOG_INFO0, apart from verboseness, ensures that the new logfile is created right away.) --- ices2-2.0.0-kh59.orig/src/signals.c +++ ices2-2.0.0-kh59/src/signals.c @@ -51,9 +51,11 @@ void signal_hup_handler(int signum __attribute__((unused))) { LOG_INFO0("Flushing logs"); - log_flush(ice...
2004 Aug 06
1
ices: Metadata for im_stdinpcm
...1("Unknown parameter %s for stdinpcm module", current->name); current = current->next; + } + if(use_metadata) + { + if(ices_config->metadata_filename) + thread_create("im_stdinpcm-metadata", metadata_thread_signal, mod, 1); + LOG_INFO0("Started metadata update thread"); } return mod; Index: im_stdinpcm.h =================================================================== RCS file: /usr/local/cvsroot/ices/src/im_stdinpcm.h,v retrieving revision 1.3 diff -u -r1.3 im_stdinpcm.h --- im_stdinpcm.h 16 Mar 2003 14:...