diff options
author | deva <deva> | 2006-08-16 23:49:23 +0000 |
---|---|---|
committer | deva <deva> | 2006-08-16 23:49:23 +0000 |
commit | 347b1d8ed3a4f780f3a5c0d57a04eab05ca517a2 (patch) | |
tree | dc21975923fb440c78ee4bbffc645a138071978f /server/info_console.cc | |
parent | 6c07f9219bed6ccddc9b65ad40414cf0a9f7d633 (diff) |
Replaced the old MiavConfig class with the new Configuration class in all the the appropriate places.
Crippled the MulticastConfiguration class. This must be rewritten to use the new configuration interface.
Diffstat (limited to 'server/info_console.cc')
-rw-r--r-- | server/info_console.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/server/info_console.cc b/server/info_console.cc index da99b7a..fdceb2f 100644 --- a/server/info_console.cc +++ b/server/info_console.cc @@ -27,14 +27,15 @@ #include <config.h> #include "info_console.h" -#include "miav_config.h" +#include "configuration.h" #include <stdio.h> #include <stdarg.h> InfoConsole::InfoConsole(): Info() { - log_filename = *(MIaV::config->readString("server_log_file")); + if(MIaV::config->get("server_log_file", &log_filename)) + fprintf(stderr, "Could not read symbol [server_log_file] from conf file!\n"); } InfoConsole::~InfoConsole() |