Browse Source

made sure debug messages would be sent to cerr, not cout

git-svn-id: svn://bind10.isc.org/svn/bind10/trunk@1382 e5f2f494-b856-4b98-b285-d166d9295462
JINMEI Tatuya 15 years ago
parent
commit
68a70daeb5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/bin/auth/auth_srv.cc

+ 1 - 1
src/bin/auth/auth_srv.cc

@@ -254,7 +254,7 @@ AuthSrvImpl::setDbFile(const isc::data::ElementPtr config) {
     if (config) {
         db_file_ = config->get("database_file")->stringValue();
         if (verbose_mode_) {
-            cout << "[AuthSrv] Data source database file: " << db_file_ << endl;
+            cerr << "[AuthSrv] Data source database file: " << db_file_ << endl;
         }
     }