diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-09-26 09:35:34 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-09-26 09:36:00 +0200 |
commit | ca4ee400edcb9d077a094f0286861a884c9bc97a (patch) | |
tree | eb9188e9a990e6322a5413466eb9a9c545b67e81 /ucb | |
parent | 8802d376686e142f6e07893e3c5a2f5650c31fe5 (diff) |
Improve debug output
Change-Id: I10a9c3679ae2d6ca8183b68b60b52e91ecd8f91f
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/gio/gio_content.cxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ucb/source/ucp/gio/gio_content.cxx b/ucb/source/ucp/gio/gio_content.cxx index ac5ba3aef271..8621782cf7ba 100644 --- a/ucb/source/ucp/gio/gio_content.cxx +++ b/ucb/source/ucp/gio/gio_content.cxx @@ -363,7 +363,10 @@ GFileInfo* Content::getGFileInfo(const uno::Reference< ucb::XCommandEnvironment if (ppError != 0) { *ppError = err; } else if (err != 0) { - SAL_WARN("ucb.ucp.gio", "ignoring GError \"" << err->message << "\""); + SAL_WARN( + "ucb.ucp.gio", + "ignoring GError \"" << err->message << "\" for <" + << m_xIdentifier->getContentIdentifier() << ">"); g_error_free(err); } return mpInfo; |