Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/drape
diff options
context:
space:
mode:
authorAlex Zolotarev <alex@maps.me>2016-01-19 18:23:03 +0300
committerSergey Yershov <yershov@corp.mail.ru>2016-03-23 16:14:16 +0300
commit777be28e30235e1f3ae971a3f4668eb5d9eb0cc5 (patch)
tree0a3296778aa02002e2b272c285933bd01cf15082 /drape
parentd2622868bf6baca0374662fb70f68809c8d86223 (diff)
ScopedLogLevelChanger integration.
Diffstat (limited to 'drape')
-rw-r--r--drape/drape_tests/testingmain.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/drape/drape_tests/testingmain.cpp b/drape/drape_tests/testingmain.cpp
index d1f6c6fa60..cfcf9642bd 100644
--- a/drape/drape_tests/testingmain.cpp
+++ b/drape/drape_tests/testingmain.cpp
@@ -41,7 +41,7 @@ int main(int argc, char * argv[])
UNUSED_VALUE(argv);
#endif
- my::g_LogLevel = LINFO;
+ my::ScopedLogLevelChanger const infoLogLevel(LINFO);
emul::GLMockFunctions::Init(&argc, argv);
MY_SCOPE_GUARD(GLMockScope, bind(&emul::GLMockFunctions::Teardown));