From 4b7bfc9b77f822c2afe2aa1704c23b2cbac5f215 Mon Sep 17 00:00:00 2001 From: Mathieu Lacage Date: Wed, 14 May 2008 15:47:35 -0700 Subject: [PATCH] tweak log output --- src/contrib/config-store.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/contrib/config-store.cc b/src/contrib/config-store.cc index 367f28c8d..55f9d7070 100644 --- a/src/contrib/config-store.cc +++ b/src/contrib/config-store.cc @@ -54,7 +54,7 @@ ConfigStore::LoadFrom (std::string filename) while (is.good()) { is >> path >> value; - NS_LOG_DEBUG (path << "=" << value); + NS_LOG_DEBUG (path << " " << value); Config::Set (path, StringValue (value)); } }