Skip to content

Commit

Permalink
docs(neorg/core/log): remove extraneous comments
Browse files Browse the repository at this point in the history
  • Loading branch information
vhyrro committed Jan 5, 2024
1 parent 63353f6 commit 7eb4aca
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions lua/neorg/core/log.lua
Original file line number Diff line number Diff line change
Expand Up @@ -29,22 +29,16 @@ local lib = require("neorg.core.lib")
--- User configuration section
--- @type neorg.log.configuration
local default_config = {
--
plugin = "neorg",

--
use_console = true,

--
highlights = true,

-- Should write to a file
use_file = true,

-- Any messages above this level will be logged.
level = "warn",

-- Level configuration
modes = {
{ name = "trace", hl = "Comment", level = vim.log.levels.TRACE },
{ name = "debug", hl = "Comment", level = vim.log.levels.DEBUG },
Expand All @@ -54,7 +48,6 @@ local default_config = {
{ name = "fatal", hl = "ErrorMsg", level = 5 },
},

-- Can limit the number of decimals displayed for floats
float_precision = 0.01,
}

Expand Down

0 comments on commit 7eb4aca

Please sign in to comment.