Kaydet (Commit) 351c4bcf authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Adapt to sal/log.hxx

Change-Id: I1af793393a1aceba7a53c85a4943a9b81362a918
üst 5e9e04c9
......@@ -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;
}
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment