summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-03-25 11:33:44 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-03-25 16:17:08 +0100
commit351c4bcf83983d8e08a5bf174e0b274bc2c0085a (patch)
treed9b324cb8fe7411060e982df0d209fa6af571f89 /sfx2
parent5e9e04c9a83f6e7f9c07ed7c10933a97adb335c1 (diff)
Adapt to sal/log.hxx
Change-Id: I1af793393a1aceba7a53c85a4943a9b81362a918
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/inc/sfxtypes.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/inc/sfxtypes.hxx b/sfx2/source/inc/sfxtypes.hxx
index b2a51e2441bd..bcefe939980c 100644
--- a/sfx2/source/inc/sfxtypes.hxx
+++ b/sfx2/source/inc/sfxtypes.hxx
@@ -92,11 +92,11 @@ public:
SfxStack( const char *pName )
{
++nLevel;
- DbgOutf( "STACK: enter %3d %s", nLevel, pName );
+ SAL_LOG("sfx", "STACK: enter " << nLevel << " " << pName);
}
~SfxStack()
{
- DbgOutf( "STACK: leave %3d", nLevel );
+ SAL_LOG("sfx", "STACK: leave " << nLevel);
--nLevel;
}
};