WWW-www.enlightenment.org pushed a commit to branch master. http://git.enlightenment.org/website/www-content.git/commit/?id=c6ff6fcd87760108b5c745f890404ae4d42e0858
commit c6ff6fcd87760108b5c745f890404ae4d42e0858 Author: Raster <ras...@rasterman.com> Date: Thu Jun 18 23:12:17 2015 -0700 Wiki page docs-efl-debug changed with summary [] by Raster --- pages/docs-efl-debug.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/docs-efl-debug.txt b/pages/docs-efl-debug.txt index bbbe797..c131ca4 100644 --- a/pages/docs-efl-debug.txt +++ b/pages/docs-efl-debug.txt @@ -87,19 +87,19 @@ The level is used for controlling which messages should appear. It specifies the To set the general log level you can use the EINA_LOG_LEVEL variable: <code bash> -EINA_LOG_LEVEL=5 ./myapp +EINA_LOG_LEVEL=5 myapp </code> Or you can use a finer selection using the EINA_LOG_LEVELS variable: <code bash> -EINA_LOG_LEVELS=module1:5,module2:2,module3:0 ./myapp +EINA_LOG_LEVELS=module1:5,module2:2,module3:0 myapp </code> This line would set module1 level to 5, module2 level to 2 and module3 level to 0. <code bash> -EINA_LOG_LEVEL=3 EINA_LOG_LEVELS_GLOB=eina_*:0 ./myapp +EINA_LOG_LEVEL=3 EINA_LOG_LEVELS_GLOB=eina_*:0 myapp </code> This will disable eina_log output from all internal eina code thus allowing you to see your own domain messages easier. --