From 5bbcd3cfdad7b303cd8bce713cf785f4dcbb1dd5 Mon Sep 17 00:00:00 2001 From: Kumi Date: Fri, 17 May 2024 10:38:23 +0200 Subject: [PATCH] feat: add debug and keyring config options Added `LogLevel` and `UseKeyring` configuration options to the example configuration file to provide users with more control over logging verbosity and the decision to utilize a system keyring for credentials storage. The LogLevel option allows for easier debugging by adjusting the verbosity of logs, whereas the UseKeyring option offers flexibility in credential management, catering to environments where a system keyring may not be preferred or available. These changes enhance the tool's usability and adaptability to various user environments and debugging needs. --- contrib/pantalaimon.example.conf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/contrib/pantalaimon.example.conf b/contrib/pantalaimon.example.conf index 5cc48fd..400e0cd 100644 --- a/contrib/pantalaimon.example.conf +++ b/contrib/pantalaimon.example.conf @@ -2,4 +2,6 @@ Homeserver = https://example.com ListenAddress = localhost ListenPort = 8010 -IgnoreVerification = True \ No newline at end of file +IgnoreVerification = True +LogLevel = debug +UseKeyring = no