diff options
author | Michael Stahl <mstahl@redhat.com> | 2014-03-27 13:48:55 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-03-27 13:53:19 +0100 |
commit | 65391bdefa1ec634f6de8a70d07b26b35c14fa65 (patch) | |
tree | 38e2ece1ff7a28223a28064310e6c7cf21832c65 /sfx2/source/inc | |
parent | 88a822a2d8c40d345cf5060a70b6b132221ef651 (diff) |
sfx2: s/SAL_LOG/SAL_INFO/ in WNT-only code
Change-Id: I0e7c241e0ee9c7d2ace75d8a935ee068da80fb6d
Diffstat (limited to 'sfx2/source/inc')
-rw-r--r-- | sfx2/source/inc/sfxtypes.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/inc/sfxtypes.hxx b/sfx2/source/inc/sfxtypes.hxx index bcefe939980c..b62167ff826c 100644 --- a/sfx2/source/inc/sfxtypes.hxx +++ b/sfx2/source/inc/sfxtypes.hxx @@ -92,11 +92,11 @@ public: SfxStack( const char *pName ) { ++nLevel; - SAL_LOG("sfx", "STACK: enter " << nLevel << " " << pName); + SAL_INFO("sfx.control", "STACK: enter " << nLevel << " " << pName); } ~SfxStack() { - SAL_LOG("sfx", "STACK: leave " << nLevel); + SAL_INFO("sfx.control", "STACK: leave " << nLevel); --nLevel; } }; |