Improve logging

Change-Id: I9c879cc16de0d5353a5ab8ce4c8a8cd7f000a170
This commit is contained in:
Stephan Bergmann
2014-09-17 11:48:20 +02:00
parent 27d5b5c6dd
commit a01ef1978c
2 changed files with 4 additions and 1 deletions

View File

@@ -540,8 +540,10 @@ MasterScriptProvider::insertByName( const OUString& aName, const Any& aElement )
xCont->insertByName( aName, aElement );
break;
}
catch ( Exception& )
catch ( Exception& e )
{
SAL_INFO(
"scripting.provider", "ignoring Exception " << e.Message);
}
}