From c646808bcb0fe95e9794409231a9fa8b51990971 Mon Sep 17 00:00:00 2001 From: Nito Martinez Date: Tue, 31 May 2016 12:44:02 +0200 Subject: Fix debugging function for Loop.cpp. getDebugSpec was replaced by << operand in ChannelEndPoint.{h|cpp}, fixes #130 --- nxcomp/Loop.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/nxcomp/Loop.cpp b/nxcomp/Loop.cpp index 436713761..473488593 100644 --- a/nxcomp/Loop.cpp +++ b/nxcomp/Loop.cpp @@ -11621,7 +11621,7 @@ int SetPorts() } #ifdef TEST - *logofs << "Loop: cups port: " << cupsPort->getDebugSpec() << "\n" + *logofs << "Loop: cups port: " << cupsPort << "\n" << logofs_flush; #endif @@ -11651,7 +11651,7 @@ int SetPorts() } #ifdef TEST - *logofs << "Loop: aux port: " << auxPort->getDebugSpec() << "\n" + *logofs << "Loop: aux port: " << auxPort << "\n" << logofs_flush; #endif @@ -11667,7 +11667,7 @@ int SetPorts() #ifdef TEST - *logofs << "Loop: smb port: " << smbPort->getDebugSpec() << "\n" + *logofs << "Loop: smb port: " << smbPort << "\n" << logofs_flush; #endif @@ -11690,7 +11690,7 @@ int SetPorts() } #ifdef TEST - *logofs << "Loop: Using multimedia port '" << mediaPort->getDebugSpec() + *logofs << "Loop: Using multimedia port '" << mediaPort << "'.\n" << logofs_flush; #endif @@ -11705,7 +11705,7 @@ int SetPorts() } #ifdef TEST - *logofs << "Loop: Using HTTP port '" << httpPort->getDebugSpec() + *logofs << "Loop: Using HTTP port '" << httpPort << "'.\n" << logofs_flush; #endif @@ -11754,7 +11754,7 @@ int SetPorts() } #ifdef TEST - *logofs << "Loop: Using slave port '" << slavePort->getDebugSpec() + *logofs << "Loop: Using slave port '" << slavePort << "'.\n" << logofs_flush; #endif -- cgit v1.2.3