comparison Core/Toolbox.cpp @ 2351:56504f89d4ac

log info
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 18 Jul 2017 08:41:09 +0200
parents dd26536454a0
children 2aff870c2c58
comparison
equal deleted inserted replaced
2350:49152eef696f 2351:56504f89d4ac
1267 LOG(WARNING) << "Falling back to system-wide default locale"; 1267 LOG(WARNING) << "Falling back to system-wide default locale";
1268 globalLocale_.reset(new std::locale()); 1268 globalLocale_.reset(new std::locale());
1269 } 1269 }
1270 else 1270 else
1271 { 1271 {
1272 LOG(WARNING) << "Using locale: \"" << locale << "\""; 1272 LOG(INFO) << "Using locale: \"" << locale << "\" for case-insensitive comparison of strings";
1273 globalLocale_.reset(new std::locale(locale)); 1273 globalLocale_.reset(new std::locale(locale));
1274 } 1274 }
1275 } 1275 }
1276 catch (std::runtime_error&) 1276 catch (std::runtime_error&)
1277 { 1277 {