From d73f20499e9b345b84c7ed4a088fed8d2e5facda Mon Sep 17 00:00:00 2001 From: Pavel Roskin Date: Mon, 28 Nov 2016 00:04:54 -0800 Subject: [PATCH] Log the result of the security level negotiation --- libxrdp/xrdp_iso.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libxrdp/xrdp_iso.c b/libxrdp/xrdp_iso.c index fa7a3f1a..b903bb4d 100644 --- a/libxrdp/xrdp_iso.c +++ b/libxrdp/xrdp_iso.c @@ -20,6 +20,7 @@ */ #include "libxrdp.h" +#include "log.h" #define LOG_LEVEL 1 #define LLOG(_level, _args) \ @@ -109,8 +110,8 @@ xrdp_iso_negotiate_security(struct xrdp_iso *self) break; } - LLOGLN(10, ("xrdp_iso_negotiate_security: server security layer %d , client security layer %d", - self->selectedProtocol, self->requestedProtocol)); + log_message(LOG_LEVEL_DEBUG, "Security layer: requested %d, selected %d", + self->requestedProtocol, self->selectedProtocol); return rv; }