mirror of
https://github.com/neovim/neovim.git
synced 2024-12-23 20:55:18 -07:00
Merge pull request #26438 from jamessan/log_spec-name
fix(log): increase size of buffer for nvim instance name
This commit is contained in:
commit
5fa88a7ae1
@ -295,7 +295,7 @@ static bool v_do_log_to_file(FILE *log_file, int log_level, const char *context,
|
||||
FUNC_ATTR_PRINTF(7, 0)
|
||||
{
|
||||
// Name of the Nvim instance that produced the log.
|
||||
static char name[16] = { 0 };
|
||||
static char name[32] = { 0 };
|
||||
|
||||
static const char *log_levels[] = {
|
||||
[LOGLVL_DBG] = "DBG",
|
||||
|
Loading…
Reference in New Issue
Block a user