summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/opietooth2/OTPeer.cpp
Side-by-side diff
Diffstat (limited to 'noncore/settings/networksettings2/opietooth2/OTPeer.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/networksettings2/opietooth2/OTPeer.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/noncore/settings/networksettings2/opietooth2/OTPeer.cpp b/noncore/settings/networksettings2/opietooth2/OTPeer.cpp
index 0d7e943..2272f04 100644
--- a/noncore/settings/networksettings2/opietooth2/OTPeer.cpp
+++ b/noncore/settings/networksettings2/opietooth2/OTPeer.cpp
@@ -52,5 +52,5 @@ void OTPeer::updateServices( void ) {
serviceList.clear();
- owarn << "Get services from " << Addr.toString() << oendl;
+ odebug << "Get services from " << Addr.toString() << oendl;
session = sdp_connect( &(OTDeviceAddress::any.getBDAddr()),
@@ -59,5 +59,5 @@ void OTPeer::updateServices( void ) {
if (!session) {
- owarn << "sdp_connect("
+ odebug << "sdp_connect("
<< Addr.toString()
<< ") failed"
@@ -81,5 +81,5 @@ void OTPeer::updateServices( void ) {
attrId,
&seq ) ) {
- owarn << "Service Search failed" << oendl;
+ odebug << "Service Search failed" << oendl;
sdp_close(session);
return;
@@ -178,5 +178,5 @@ void OTPeer::findOutState( int timeoutInSec, bool Force ) {
ProbePhase = 0;
ProbeTimeout = timeoutInSec*1000;
- owarn << "Ping " << address().toString() << oendl;
+ odebug << "Ping " << address().toString() << oendl;
startTimer( POLLDELAY );
} else {
@@ -236,5 +236,5 @@ void OTPeer::timerEvent( QTimerEvent * ev ) {
pf[0].events = POLLOUT;
if( (n = ::poll(pf, 1, 0)) < 0 ) {
- owarn << address().toString()
+ odebug << address().toString()
<< " : errno "
<< errno
@@ -267,5 +267,5 @@ void OTPeer::timerEvent( QTimerEvent * ev ) {
// connect because the device does not allow us
// but it is UP
- owarn << address().toString()
+ odebug << address().toString()
<< " good send error "
<< errno
@@ -277,5 +277,5 @@ void OTPeer::timerEvent( QTimerEvent * ev ) {
break;
} else if( errno != EBUSY ) {
- owarn << address().toString()
+ odebug << address().toString()
<< " : errno "
<< errno
@@ -300,5 +300,5 @@ void OTPeer::timerEvent( QTimerEvent * ev ) {
pf[0].events = POLLIN;
if( (n = ::poll(pf, 1, 0)) < 0 ) {
- owarn << address().toString()
+ odebug << address().toString()
<< " : errno "
<< errno
@@ -316,5 +316,5 @@ void OTPeer::timerEvent( QTimerEvent * ev ) {
if( (n = ::recv( ProbeFD, buf, sizeof(buf), 0)) < 0) {
- owarn << address().toString()
+ odebug << address().toString()
<< "errno "
<< errno
@@ -331,5 +331,5 @@ void OTPeer::timerEvent( QTimerEvent * ev ) {
break;
- owarn << "reply from "
+ odebug << "reply from "
<< address().toString()
<< oendl;