summaryrefslogtreecommitdiff
path: root/src/modules.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules.cpp')
-rw-r--r--src/modules.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/modules.cpp b/src/modules.cpp
index ca3c2e423..59833b6bd 100644
--- a/src/modules.cpp
+++ b/src/modules.cpp
@@ -355,14 +355,12 @@ ConfigReader::ConfigReader(std::string filename)
std::string ConfigReader::ReadValue(std::string tag, std::string name, int index)
{
- log(DEBUG,"ConfigReader::ReadValue '%s' '%s' %d",tag.c_str(),name.c_str(),index);
char val[MAXBUF];
char t[MAXBUF];
char n[MAXBUF];
strncpy(t,tag.c_str(),MAXBUF);
strncpy(n,name.c_str(),MAXBUF);
ReadConf(cache,t,n,index,val);
- log(DEBUG,"ConfigReader::ReadValue read '%s'",val);
return std::string(val);
}