summaryrefslogtreecommitdiff
path: root/unotools
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-03-19 14:38:29 +0100
committerStephan Bergmann <sbergman@redhat.com>2013-03-19 14:45:53 +0100
commit61e0ce089d2cff59c4144c05263cf6e83a92fd76 (patch)
treedbfc075ecb5dc9bc170d3d96adfd61371cd5ad27 /unotools
parent3968f5e874038ddfdcf70080ba6f122a48753b60 (diff)
DBG_ASSERT -> SAL_WARN
Change-Id: I29a13ac9631027d7c527c3b395d4a887c290acc7
Diffstat (limited to 'unotools')
-rw-r--r--unotools/source/config/lingucfg.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/unotools/source/config/lingucfg.cxx b/unotools/source/config/lingucfg.cxx
index f5317f04f08a..e665ccd9d908 100644
--- a/unotools/source/config/lingucfg.cxx
+++ b/unotools/source/config/lingucfg.cxx
@@ -957,12 +957,14 @@ static bool lcl_GetFileUrlFromOrigin(
}
else
{
- DBG_ASSERT( bIsFileUrl, "not a file URL");
+ SAL_WARN(
+ "unotools.config", "not a file URL, <" << aURL << ">" );
}
}
else
{
- DBG_ASSERT( 0, "failed to get file URL" );
+ SAL_WARN(
+ "unotools.config", "failed to get file URL, <" << aURL << ">" );
}
}
return bSuccess;