diff options
author | Pavel Roskin <plroskin@gmail.com> | 2016-11-28 00:04:54 -0800 |
---|---|---|
committer | Pavel Roskin <plroskin@gmail.com> | 2016-11-28 00:18:16 -0800 |
commit | d73f20499e9b345b84c7ed4a088fed8d2e5facda (patch) | |
tree | b505413974ac39961c32a422bd0dc473e03b427f | |
parent | 8069b29429264be42fa4d5b1d36fb95a7952885f (diff) | |
download | xrdp-proprietary-d73f20499e9b345b84c7ed4a088fed8d2e5facda.tar.gz xrdp-proprietary-d73f20499e9b345b84c7ed4a088fed8d2e5facda.zip |
Log the result of the security level negotiation
-rw-r--r-- | libxrdp/xrdp_iso.c | 5 |
1 files 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; } |