summaryrefslogtreecommitdiff
path: root/unotools
diff options
context:
space:
mode:
authorEike Rathke <er@openoffice.org>2000-11-23 18:55:06 +0000
committerEike Rathke <er@openoffice.org>2000-11-23 18:55:06 +0000
commit63b68eaf45f5393ce992760d2de0111745caf060 (patch)
tree3cd8dab727115c8883c19dd05abe6c52e17ebee1 /unotools
parentc5d0ca0ee9b2fd8c379e532a97e66fffbd402133 (diff)
#80660# loadCalendar: output requested ID in assertion
Diffstat (limited to 'unotools')
-rw-r--r--unotools/source/i18n/calendarwrapper.cxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/unotools/source/i18n/calendarwrapper.cxx b/unotools/source/i18n/calendarwrapper.cxx
index 2b310698e8a8..f74f29a228cf 100644
--- a/unotools/source/i18n/calendarwrapper.cxx
+++ b/unotools/source/i18n/calendarwrapper.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: calendarwrapper.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: er $ $Date: 2000-11-18 19:21:48 $
+ * last change: $Author: er $ $Date: 2000-11-23 19:55:06 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -173,7 +173,9 @@ void CalendarWrapper::loadCalendar( const ::rtl::OUString& rUniqueID, const ::co
catch ( Exception& e )
{
#ifndef PRODUCT
- ByteString aMsg( "loadCalendar: Exception caught\n" );
+ ByteString aMsg( "loadCalendar: Exception caught\nrequested: " );
+ aMsg += ByteString( String( rUniqueID ), RTL_TEXTENCODING_UTF8 );
+ aMsg += '\n';
aMsg += ByteString( String( e.Message ), RTL_TEXTENCODING_UTF8 );
DBG_ERRORFILE( aMsg.GetBuffer() );
#endif