Update.
Project: http://git-wip-us.apache.org/repos/asf/trafodion/repo Commit: http://git-wip-us.apache.org/repos/asf/trafodion/commit/38935a48 Tree: http://git-wip-us.apache.org/repos/asf/trafodion/tree/38935a48 Diff: http://git-wip-us.apache.org/repos/asf/trafodion/diff/38935a48 Branch: refs/heads/master Commit: 38935a48342483cdce46fccedfdf562dc4b9ea72 Parents: b0f649b Author: Dave George <[email protected]> Authored: Fri Mar 23 19:10:23 2018 +0000 Committer: Dave George <[email protected]> Committed: Fri Mar 23 19:10:23 2018 +0000 ---------------------------------------------------------------------- core/sqf/monitor/linux/nsreqqueue.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafodion/blob/38935a48/core/sqf/monitor/linux/nsreqqueue.cxx ---------------------------------------------------------------------- diff --git a/core/sqf/monitor/linux/nsreqqueue.cxx b/core/sqf/monitor/linux/nsreqqueue.cxx index aa92ead..aeb1d53 100644 --- a/core/sqf/monitor/linux/nsreqqueue.cxx +++ b/core/sqf/monitor/linux/nsreqqueue.cxx @@ -41,7 +41,7 @@ void CRequest::monreply(struct message_def *msg, int sockFd, int *error) { case ReplyType_Generic: size += sizeof(struct Generic_reply_def); - if (trace_settings & (TRACE_PROCESS_DETAIL)) + if (trace_settings & (TRACE_NS | TRACE_PROCESS_DETAIL)) { trace_printf("%s@%d reply type=%d(Generic), size=%d, sock=%d\n", method_name, __LINE__, msg->u.reply.type, size, sockFd); @@ -51,7 +51,7 @@ void CRequest::monreply(struct message_def *msg, int sockFd, int *error) break; case ReplyType_DelProcessNs: size += sizeof(struct DelProcessNs_reply_def); - if (trace_settings & (TRACE_PROCESS_DETAIL)) + if (trace_settings & (TRACE_NS | TRACE_PROCESS_DETAIL)) { trace_printf("%s@%d reply type=%d(DelProcessNs), size=%d, sock=%d\n", method_name, __LINE__, msg->u.reply.type, size, sockFd); @@ -59,7 +59,7 @@ void CRequest::monreply(struct message_def *msg, int sockFd, int *error) break; case ReplyType_NewProcessNs: size += sizeof(struct NewProcessNs_reply_def); - if (trace_settings & (TRACE_PROCESS_DETAIL)) + if (trace_settings & (TRACE_NS | TRACE_PROCESS_DETAIL)) { trace_printf("%s@%d reply type=%d(NewProcessNs), size=%d, sock=%d\n", method_name, __LINE__, msg->u.reply.type, size, sockFd); @@ -67,7 +67,7 @@ void CRequest::monreply(struct message_def *msg, int sockFd, int *error) break; case ReplyType_ProcessInfo: size += sizeof(struct ProcessInfo_reply_def); - if (trace_settings & (TRACE_PROCESS_DETAIL)) + if (trace_settings & (TRACE_NS | TRACE_PROCESS_DETAIL)) { trace_printf("%s@%d reply type=%d(ProcessInfo), size=%d, sock=%d\n", method_name, __LINE__, msg->u.reply.type, size, sockFd); @@ -78,7 +78,7 @@ void CRequest::monreply(struct message_def *msg, int sockFd, int *error) } break; default: - if (trace_settings & (TRACE_PROCESS_DETAIL)) + if (trace_settings & (TRACE_NS | TRACE_PROCESS_DETAIL)) { trace_printf("%s@%d reply type=%d(?), size=%d, sock=%d\n", method_name, __LINE__, msg->u.reply.type, size, sockFd);
