Add ability to StringVerifier to test for non-emptiness

This commit is contained in:
Alexander Bock
2021-03-23 00:09:02 +01:00
parent 45b2d0e014
commit 196a98b0c6
3 changed files with 37 additions and 1 deletions

View File

@@ -103,7 +103,6 @@ std::unique_ptr<ghoul::logging::Log> createLog(const ghoul::Dictionary& dictiona
bool dateStamp = p.dateStamping.value_or(true);
bool categoryStamp = p.categoryStamping.value_or(true);
bool logLevelStamp = p.logLevelStamping.value_or(true);
Parameters::LogLevel logLevel = p.logLevel.value_or(Parameters::LogLevel::AllLogging);
ghoul::logging::LogLevel level = [](Parameters::LogLevel l) {
switch (l) {
case Parameters::LogLevel::AllLogging: