From 2de986c6415478abae0fd63f4724ea506c27a15a Mon Sep 17 00:00:00 2001 From: dec05eba Date: Sun, 10 Dec 2017 15:01:21 +0100 Subject: Remove frivilous debugging statements --- src/Conf.cpp | 4 +++- src/GlobalLib.cpp | 2 +- 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; } -- cgit v1.2.3