aboutsummaryrefslogtreecommitdiff
path: root/src/Conf.cpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2017-12-10 15:01:21 +0100
committerdec05eba <dec05eba@protonmail.com>2017-12-10 15:01:26 +0100
commit2de986c6415478abae0fd63f4724ea506c27a15a (patch)
treeb07b13a32ecab6b5ea7072e5d148ae028b9aa288 /src/Conf.cpp
parent1736b785dda2ba5b8a81ac0db339c36b579f7f0a (diff)
Remove frivilous debugging statements
Diffstat (limited to 'src/Conf.cpp')
-rw-r--r--src/Conf.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Conf.cpp b/src/Conf.cpp
index dc1bbd0..107ad0a 100644
--- a/src/Conf.cpp
+++ b/src/Conf.cpp
@@ -335,11 +335,12 @@ namespace sibs
void SibsConfig::processObject(StringView name)
{
currentObject = name;
- printf("Process object: %.*s\n", name.size, name.data);
+ //printf("Process object: %.*s\n", name.size, name.data);
}
void SibsConfig::processField(StringView name, const ConfigValue &value)
{
+ /*
printf("Process field: %.*s, value: ", name.size, name.data);
if(value.isSingle())
{
@@ -359,6 +360,7 @@ namespace sibs
printf("]");
}
printf("\n");
+ */
if(currentObject.equals("package") && name.equals("name"))
{