diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2018-02-27 07:47:49 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2018-02-27 07:50:10 +0100 |
commit | a88ca271751c1bcf90b352b8c5a79631263c56aa (patch) | |
tree | 4a8b4f52942e7d07a39dafaa2bcb8522d2697411 /nxcomp/src | |
parent | 0ef6b0d59e1510690b8d1202675b109af5fb0402 (diff) | |
download | nx-libs-a88ca271751c1bcf90b352b8c5a79631263c56aa.tar.gz nx-libs-a88ca271751c1bcf90b352b8c5a79631263c56aa.tar.bz2 nx-libs-a88ca271751c1bcf90b352b8c5a79631263c56aa.zip |
nxcomp/src/Loop.cpp: Harmonize log output. Uniformly, embrace port values by single quotes.
Fixes ArcticaProject/nx-libs#617.
Diffstat (limited to 'nxcomp/src')
-rw-r--r-- | nxcomp/src/Loop.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/nxcomp/src/Loop.cpp b/nxcomp/src/Loop.cpp index 186bb7152..251eb04f3 100644 --- a/nxcomp/src/Loop.cpp +++ b/nxcomp/src/Loop.cpp @@ -11010,8 +11010,8 @@ int SetPorts() - nxinfo << "Loop: cups port: " << cupsPort << "\n" - << std::flush; + nxinfo << "Loop: cups port: '" << cupsPort + << "'.\n" << std::flush; if (control -> ProxyMode == proxy_client) { auxPort.setDefaultTCPPort(DEFAULT_NX_AUX_PORT_OFFSET + proxyPort); @@ -11031,8 +11031,8 @@ int SetPorts() } } - nxinfo << "Loop: aux port: " << auxPort << "\n" - << std::flush; + nxinfo << "Loop: aux port: '" << auxPort + << "'.\n" << std::flush; if (control -> ProxyMode == proxy_client) { smbPort.setDefaultTCPPort(DEFAULT_NX_SMB_PORT_OFFSET + proxyPort); @@ -11042,8 +11042,8 @@ int SetPorts() } - nxinfo << "Loop: smb port: " << smbPort << "\n" - << std::flush; + nxinfo << "Loop: smb port: '" << smbPort + << "'.\n" << std::flush; if ( mediaPort.configured() ) { if (control -> ProxyMode == proxy_client) { |