diff --git a/src/ProtocolManager.cpp b/src/ProtocolManager.cpp
index a878c87ed1df812a052ac0d017a4749e678fa1ec..5d0cbbd4470be7e6ad0c4315d667827876b3abe0 100644
--- a/src/ProtocolManager.cpp
+++ b/src/ProtocolManager.cpp
@@ -437,8 +437,8 @@ void ProtocolManager::fillRow(Response::Metadata::Row* row)
         if(m_it->get_indicator(i) == soci::i_null)
         {
             #ifdef VERBOSE_DEBUG
-                INFO_STREAM << "ProtocolManager::fillRow() name "
-                    << name << " null" << endl;
+                INFO_STREAM << "ProtocolManager::fillRow() " << name
+                    << " null" << endl;
             #endif
             continue;
         }
@@ -450,8 +450,8 @@ void ProtocolManager::fillRow(Response::Metadata::Row* row)
                 std::string value = m_it->get<std::string>(i);
 
                 #ifdef VERBOSE_DEBUG
-                    INFO_STREAM << "ProtocolManager::fillRow() name "
-                        << name << " " << value << endl;
+                    INFO_STREAM << "ProtocolManager::fillRow() " << name
+                        << " " << value << endl;
                 #endif
 
                 Response::Metadata::Row::DtString* dtString = row->add_strings_list();
@@ -465,8 +465,8 @@ void ProtocolManager::fillRow(Response::Metadata::Row* row)
                 double value = m_it->get<double>(i);
 
                 #ifdef VERBOSE_DEBUG
-                    INFO_STREAM << "ProtocolManager::fillRow() name "
-                        << name << " " << value << endl;
+                    INFO_STREAM << "ProtocolManager::fillRow() " << name
+                        << " " << value << endl;
                 #endif
 
                 Response::Metadata::Row::DtDouble* dtDouble = row->add_double_list();
@@ -480,8 +480,8 @@ void ProtocolManager::fillRow(Response::Metadata::Row* row)
                 int value = m_it->get<int>(i);
 
                 #ifdef VERBOSE_DEBUG
-                    INFO_STREAM << "ProtocolManager::fillRow() name "
-                        << name << " " << value << endl;
+                    INFO_STREAM << "ProtocolManager::fillRow() " << name
+                        << " " << value << endl;
                 #endif
 
                 Response::Metadata::Row::DtInteger* dtInteger = row->add_integer_list();
@@ -495,8 +495,8 @@ void ProtocolManager::fillRow(Response::Metadata::Row* row)
                 long long value = m_it->get<long long>(i);
 
                 #ifdef VERBOSE_DEBUG
-                    INFO_STREAM << "ProtocolManager::fillRow() name "
-                        << name << " " << value << endl;
+                    INFO_STREAM << "ProtocolManager::fillRow() " << name
+                        << " " << value << endl;
                 #endif
 
                 Response::Metadata::Row::DtLongLong* dtLongLong = row->add_long_long_list();
@@ -510,8 +510,8 @@ void ProtocolManager::fillRow(Response::Metadata::Row* row)
                 unsigned long value = m_it->get<unsigned long>(i);
 
                 #ifdef VERBOSE_DEBUG
-                    INFO_STREAM << "ProtocolManager::fillRow() name "
-                        << name << " " << value << endl;
+                    INFO_STREAM << "ProtocolManager::fillRow() " << name
+                        << " " << value << endl;
                 #endif
 
                 Response::Metadata::Row::DtUnsignedLong* dtUnsignedLong = row->add_unsinged_long_list();
@@ -526,8 +526,8 @@ void ProtocolManager::fillRow(Response::Metadata::Row* row)
                 boost::posix_time::ptime ptValue = boost::posix_time::ptime_from_tm(tmValue);
 
                 #ifdef VERBOSE_DEBUG
-                    INFO_STREAM << "ProtocolManager::fillRow() name "
-                        << name << " " << boost::posix_time::to_simple_string(ptValue) << endl;
+                    INFO_STREAM << "ProtocolManager::fillRow() " << name << " "
+                        << boost::posix_time::to_simple_string(ptValue) << endl;
                 #endif
 
                 Response::Metadata::Row::DtDate* dtDate = row->add_date_list();