This commit is contained in:
osamahammad21
2020-11-14 17:29:40 +02:00
parent 5f1f18701d
commit 004f166f68
2 changed files with 6 additions and 2 deletions

7
Jenkinsfile vendored
View File

@@ -18,7 +18,12 @@ pipeline {
sh './jenkins/test-tcl.sh'
}
}
stage('CPP Tests') {
steps {
sh './jenkins/test-cpp.sh'
}
}
}
}
}
}
}

View File

@@ -228,7 +228,6 @@ int Log(ModuleType _type,
return -1; // invalid id
message = "[{}-{:04d}] " + message;
const char* type = modules_name_tbl[_type];
spdlog::set_pattern("[%^%l%$] %v");
spdlog::log((spdlog::level::level_enum) _status, message, type, id, args...);
return 0;
}