diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-09-11 09:15:33 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-09-11 22:35:52 +0200 |
commit | 32cdbc9c96898cf8bc2485b3df1be46c3c835ab0 (patch) | |
tree | 1044d9c2e07311dd66582c49136c48f21adb5515 | |
parent | 2cb743eea3396541e155c24773b54de0663c7475 (diff) |
log what token was unexpected
Change-Id: I192bd691816a044dbca389621730ca7ee3a584e9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102453
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r-- | oox/source/drawingml/fillproperties.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/drawingml/fillproperties.cxx b/oox/source/drawingml/fillproperties.cxx index b6669210942a..655e177d94f3 100644 --- a/oox/source/drawingml/fillproperties.cxx +++ b/oox/source/drawingml/fillproperties.cxx @@ -1021,7 +1021,7 @@ sal_Int32 ArtisticEffectProperties::getEffectToken( const OUString& sName ) else if( sName == "amount" ) return XML_amount; - SAL_WARN( "oox.drawingml", "ArtisticEffectProperties::getEffectToken - unexpected token name" ); + SAL_WARN( "oox.drawingml", "ArtisticEffectProperties::getEffectToken - unexpected token name: " << sName ); return XML_none; } |