summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2024-04-16 10:53:31 +0200
committerJeroen Wijenbergh <jeroenwijenbergh@protonmail.com>2024-04-16 12:33:15 +0200
commit731bd7eb4f2254dcce955ba748b48b1edfa541df (patch)
treee32954e2eb10eba4934123fecac675fabd672376
parentb0cfacfd6ebc5f6d2bafd974047b9b21d45d1108 (diff)
Client: Log ProxyGuard as Info
-rw-r--r--client/proxy.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/proxy.go b/client/proxy.go
index 2f05f8a..e7757ca 100644
--- a/client/proxy.go
+++ b/client/proxy.go
@@ -15,12 +15,12 @@ type ProxyLogger struct{}
// Logf logs a message with parameters
func (pl *ProxyLogger) Logf(msg string, params ...interface{}) {
- log.Logger.Debugf("[Proxyguard] "+msg, params...)
+ log.Logger.Infof("[Proxyguard] "+msg, params...)
}
// Log logs a message
func (pl *ProxyLogger) Log(msg string) {
- log.Logger.Debugf("[Proxyguard] %s", msg)
+ log.Logger.Infof("[Proxyguard] %s", msg)
}
// StartProxyguard starts proxyguard for proxied WireGuard connections