diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/include/proto.h | 1 | ||||
-rw-r--r-- | source3/lib/debug.c | 9 |
2 files changed, 10 insertions, 0 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 1a8a9a9538..49afd8c466 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -466,6 +466,7 @@ void debug_message(struct messaging_context *msg_ctx, void *private_data, uint32 void debug_init(void); void debug_register_msgs(struct messaging_context *msg_ctx); void setup_logging(const char *pname, bool interactive); +void setup_logging_stdout( void ); void debug_set_logfile(const char *name); bool reopen_logs( void ); void force_check_log_size( void ); diff --git a/source3/lib/debug.c b/source3/lib/debug.c index 419af61ef3..e7dcfb4fdf 100644 --- a/source3/lib/debug.c +++ b/source3/lib/debug.c @@ -605,6 +605,15 @@ void setup_logging(const char *pname, bool interactive) #endif } +/** + Just run logging to stdout for this program +*/ +_PUBLIC_ void setup_logging_stdout(void) +{ + setup_logging(NULL, True); +} + + /*************************************************************************** Set the logfile name. **************************************************************************/ |