aboutsummaryrefslogtreecommitdiff
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
parent1736b785dda2ba5b8a81ac0db339c36b579f7f0a (diff)
Remove frivilous debugging statements
-rw-r--r--src/Conf.cpp4
-rw-r--r--src/GlobalLib.cpp2
2 files changed, 4 insertions, 2 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"))
{
diff --git a/src/GlobalLib.cpp b/src/GlobalLib.cpp
index 41e26c1..44652b8 100644
--- a/src/GlobalLib.cpp
+++ b/src/GlobalLib.cpp
@@ -69,7 +69,7 @@ namespace sibs
{
if(file->is_dir)
{
- printf("version: %s\n", file->name);
+ //printf("version: %s\n", file->name);
if(_tinydir_strcmp(version.c_str(), file->name) == 0)
foundVersion = file->name;
}