summaryrefslogtreecommitdiff
path: root/svtools/source/svhtml/parhtml.cxx
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2017-04-01 02:17:02 +0200
committerJulien Nabet <serval2412@yahoo.fr>2017-04-01 07:27:14 +0000
commit884499a03ed125f8e87fd6ff620f3e0d2fef452c (patch)
tree992d98c5af3efc8148ec002f8f976af73f7a7e6b /svtools/source/svhtml/parhtml.cxx
parentc0ba76030ab03f9a424d36113a2def38eca3fb7c (diff)
Display unknown token for html key in console
Change-Id: I57740e52a8e76d4f0f68cb2e58ca3f1aab249a0b Reviewed-on: https://gerrit.libreoffice.org/35989 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'svtools/source/svhtml/parhtml.cxx')
-rw-r--r--svtools/source/svhtml/parhtml.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/svhtml/parhtml.cxx b/svtools/source/svhtml/parhtml.cxx
index acd523092ff2..cd8faf0509af 100644
--- a/svtools/source/svhtml/parhtml.cxx
+++ b/svtools/source/svhtml/parhtml.cxx
@@ -1390,7 +1390,7 @@ const HTMLOptions& HTMLParser::GetOptions( sal_uInt16 *pNoConvertToken )
// PlugIns require original token name. Convert to lower case only for searching.
nToken = GetHTMLOption( sName.toAsciiLowerCase() ); // Name is ready
SAL_WARN_IF( nToken==HTML_O_UNKNOWN, "svtools",
- "GetOption: unknown HTML option" );
+ "GetOption: unknown HTML option '" << sName << "'" );
bool bStripCRLF = (nToken < HTML_OPTION_SCRIPT_START ||
nToken >= HTML_OPTION_SCRIPT_END) &&
(!pNoConvertToken || nToken != *pNoConvertToken);