Skip to content

Commit 2750a3a

Browse files
committed
chore: silence loggers
1 parent 4206c48 commit 2750a3a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lua/image/utils/logger.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ return {
6161
log = create_logger({
6262
prefix = "[image.nvim]",
6363
formatter = default_log_formatter,
64-
handler = print,
64+
handler = nil,
6565
output_file = "/tmp/nvim-image.txt",
6666
}),
6767
throw = create_logger({
@@ -73,7 +73,7 @@ return {
7373
debug = create_logger({
7474
prefix = "[image.nvim]",
7575
formatter = default_log_formatter,
76-
handler = print,
76+
handler = nil,
7777
output_file = "/tmp/nvim-image.txt",
7878
}),
7979
}

0 commit comments

Comments
 (0)