Skip to content

Commit f36cdbc

Browse files
committed
EH: CS-1968 remove logging "Got telnet client name from global/local config: builtin" from qlogin client output
1 parent 9d4dac8 commit f36cdbc

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

source/clients/qsh/msg_qsh.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@
7979
#define MSG_QSH_ERRORWHILEWAITINGFORBUILTINIJSCONNECTION_S _MESSAGE(17039, _("error while waiting for builtin IJS connection: " SFQ)) \
8080

8181
#define MSG_QSH_RSH_CLIENT_FROM_ENVIRONMENT_S _MESSAGE(17040, _("Got rsh client name from environment: " SFN))
82-
#define MSG_QSH_RSH_CLIENT_FROM_QMASTER_SS _MESSAGE(17041, _("Got " SFN " client name from global/local config: " SFN))
8382
#define MSG_QSH_RSH_NO_CONFIG_USING_DEFAULT_SS _MESSAGE(17042, _("No " SFN " client configured in global/local config, using default: " SFN))
8483
\
8584
// clang-format on

source/clients/qsh/ocs_qsh.cc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1019,8 +1019,7 @@ get_client_name(int is_rsh, int is_rlogin, int inherit_job)
10191019
VERBOSE_LOG((stderr, "\n"))
10201020
} else {
10211021
client_name = strdup(client_name);
1022-
VERBOSE_LOG((stderr, MSG_QSH_RSH_CLIENT_FROM_QMASTER_SS, session_type, client_name));
1023-
VERBOSE_LOG((stderr, "\n"))
1022+
DPRINTF("Got %s_client name from global/local config: %s\n", session_type, client_name);
10241023
}
10251024

10261025
if (strcasecmp(client_name, "builtin") == 0) {

0 commit comments

Comments
 (0)