diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2019-08-01 16:06:20 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2019-08-01 16:06:20 +0800 |
commit | f1929469e177cde71d10efb8bd286db6ffd4e962 (patch) | |
tree | e686c22492b12d3b1d8b971eee65f6e8e91fe469 /server/src/method | |
parent | eb9eab4667b63521dfca3ba6ba6180b495cd8c57 (diff) | |
download | lua-language-server-f1929469e177cde71d10efb8bd286db6ffd4e962.zip |
去掉多余的日志
Diffstat (limited to 'server/src/method')
-rw-r--r-- | server/src/method/textDocument/onTypeFormatting.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/method/textDocument/onTypeFormatting.lua b/server/src/method/textDocument/onTypeFormatting.lua index 4943c609..fc9cbdc9 100644 --- a/server/src/method/textDocument/onTypeFormatting.lua +++ b/server/src/method/textDocument/onTypeFormatting.lua @@ -1,7 +1,7 @@ return function (lsp, params) local uri = params.textDocument.uri local vm, lines = lsp:loadVM(uri) - log.debug(table.dump(params)) + --log.debug(table.dump(params)) if not vm then return nil end |