From 071dd5923aa311dc6830904a4e31db227ea08995 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Sun, 18 Aug 2013 14:35:59 +0200 Subject: [PATCH] Display priority string when starting with debug level >= 1. --- src/tlsproxy.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tlsproxy.c b/src/tlsproxy.c index 751c860..6d49253 100644 --- a/src/tlsproxy.c +++ b/src/tlsproxy.c @@ -191,6 +191,7 @@ int main(int argc, char **argv) { if (global_log_level >= LOG_DEBUG1_LEVEL) { printf("tlsproxy %s\n", VERSION); printf("Listening for connections on port %d.\n", port); + printf("Priority string: %s.\n", PROXY_TLS_PRIORITIES); if (global_proxy_host != NULL && global_proxy_port != NULL) { printf("Using proxy: %s:%s.\n", global_proxy_host, -- 2.43.2