diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-02-18 12:50:17 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-02-18 13:17:20 +0200 |
commit | da3d37b968a79ff59fcc4103174b5b6bc3ec74c0 (patch) | |
tree | 6c20be0e6bb7e93a4d490b9b6de54c404cf0a688 | |
parent | f6a02947896e19160c137032a7fc2e56277656af (diff) |
Be specific in the logging as multiple threads involved
Sure, each SAL_INFO output line includes the thread ID, but still,
good to avoid confusion from where this line is coming.
Change-Id: Idc531640e661ed363c7badbad8b83fbb43eaf3ad
-rw-r--r-- | sd/source/ui/remotecontrol/BluetoothServer.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/remotecontrol/BluetoothServer.cxx b/sd/source/ui/remotecontrol/BluetoothServer.cxx index 1062e1c9b697..a35fe27d92df 100644 --- a/sd/source/ui/remotecontrol/BluetoothServer.cxx +++ b/sd/source/ui/remotecontrol/BluetoothServer.cxx @@ -152,7 +152,7 @@ sal_Int32 OSXBluetoothWrapper::readLine( rtl::OString& aLine ) s << *p; } } - SAL_INFO( "sdremote.bluetooth", " mBuffer: \"" << s.str() << "\"" ); + SAL_INFO( "sdremote.bluetooth", "OSXBluetoothWrapper::readLine mBuffer: \"" << s.str() << "\"" ); #endif // got enough bytes to return a line? |