Switch to unified view

a/src/common/rclinit.cpp b/src/common/rclinit.cpp
...
...
303
    }
303
    }
304
    if (!loglevel.empty()) {
304
    if (!loglevel.empty()) {
305
    int lev = atoi(loglevel.c_str());
305
    int lev = atoi(loglevel.c_str());
306
        Logger::getTheLog("")->setLogLevel(Logger::LogLevel(lev));
306
        Logger::getTheLog("")->setLogLevel(Logger::LogLevel(lev));
307
    }
307
    }
308
    LOGINF("Configuration directory: " << config->getConfDir() << std::endl);
308
309
309
    // Make sure the locale charset is initialized (so that multiple
310
    // Make sure the locale charset is initialized (so that multiple
310
    // threads don't try to do it at once).
311
    // threads don't try to do it at once).
311
    config->getDefCharset();
312
    config->getDefCharset();
312
313