diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2015-08-10 14:01:33 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2015-08-11 03:31:47 +0000 |
commit | 7bdc6be9c23517eec02ce7139edd7003abbee1f8 (patch) | |
tree | f1db60222b9cd8c21e8039b4023e74ffb1994227 /slideshow/source/engine/smilfunctionparser.cxx | |
parent | e98cf0c63d6c48ca7c1db87d7413d5c419690c76 (diff) |
slideshow: stop (mis)-using VERBOSE
converted the use of internal 'verbose' level tracing to SAL_INFO/SAL_WARN
Change-Id: Iab89d9b5c75fe476c6516718f1cee3d01d196858
Reviewed-on: https://gerrit.libreoffice.org/17632
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com>
Diffstat (limited to 'slideshow/source/engine/smilfunctionparser.cxx')
-rw-r--r-- | slideshow/source/engine/smilfunctionparser.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/slideshow/source/engine/smilfunctionparser.cxx b/slideshow/source/engine/smilfunctionparser.cxx index 7e184030cf9d..64021265589f 100644 --- a/slideshow/source/engine/smilfunctionparser.cxx +++ b/slideshow/source/engine/smilfunctionparser.cxx @@ -38,7 +38,7 @@ // But watch out, the parser might have // state not visible to this code! #define BOOST_SPIRIT_SINGLE_GRAMMAR_INSTANCE -#if defined(VERBOSE) && defined(DBG_UTIL) +#if defined(DBG_UTIL) #include <typeinfo> #define BOOST_SPIRIT_DEBUG #endif @@ -180,7 +180,7 @@ namespace slideshow { if( !mpContext->mbParseAnimationFunction ) { - OSL_FAIL( "ValueTFunctor::operator(): variable encountered, but we're not parsing a function here" ); + SAL_WARN("slideshow", "ValueTFunctor::operator(): variable encountered, but we're not parsing a function here" ); throw ParseError(); } |