From 9c7a5b04c534c496bd8c11d1f60b1024baa6d8cb Mon Sep 17 00:00:00 2001 From: lvlcn-t <75443136+lvlcn-t@users.noreply.github.com> Date: Sat, 24 Feb 2024 16:19:47 +0100 Subject: [PATCH] chore: unexpose internal logging level type --- logger/logger.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/logger/logger.go b/logger/logger.go index 585c75c..3ad4ce8 100644 --- a/logger/logger.go +++ b/logger/logger.go @@ -12,9 +12,6 @@ import ( // Its build on top of slog.Logger and extends it with additional logging methods. type Logger = logger.Logger -// Level is the type for log levels. -type Level logger.Level - // NewLogger creates a new Logger instance. // If handlers are provided, the first handler in the slice is used; otherwise, // a default JSON handler writing to os.Stderr is used. This function allows for