diff options
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 16 |
1 files changed, 13 insertions, 3 deletions
@@ -12,6 +12,7 @@ #include "log.h" #include "log_colored.h" #include "log_file.h" +#include "options.h" #include "utils.h" #include "redirector.h" #include "protocol_ssh.h" @@ -129,12 +130,21 @@ int main(int argc, char *argv[]) (void) argv; arg0 = argv[0]; - //LOG_SET_FUNCS_VA(LOG_COLORED_FUNCS); - log_file = strdup("./potd.log"); - LOG_SET_FUNCS_VA(LOG_FILE_FUNCS); + if (options_cmdline(argc, argv)) { + fprintf(stderr, "%s: parsing command line failed\n", argv[0]); + exit(EXIT_FAILURE); + } + + if (getopt_used(OPT_LOGFILE)) { + log_file = getopt_str(OPT_LOGFILE); + LOG_SET_FUNCS_VA(LOG_FILE_FUNCS); + } else { + LOG_SET_FUNCS_VA(LOG_COLORED_FUNCS); + } //log_prio = DEBUG; if (log_open()) exit(EXIT_FAILURE); + #ifdef HAVE_CONFIG_H N("%s (C) 2018 Toni Uhlig (%s)", PACKAGE_STRING, PACKAGE_BUGREPORT); #endif |