Skip to content

Commit 52c3ec4

Browse files
committed
fix: log level
1 parent 93549a9 commit 52c3ec4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lua/smart-splits/mux/init.lua

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,18 @@ local directions_reverse = {
1515
local function move_multiplexer_inner(direction, multiplexer)
1616
local current_pane = multiplexer.current_pane_id()
1717
if not current_pane then
18-
log.error('Failed to get multiplexer pane ID')
18+
log.debug('Failed to get multiplexer pane ID')
1919
return false
2020
end
2121

2222
local ok = multiplexer.next_pane(direction)
2323
if not ok then
24-
log.error('Failed to select multiplexer pane')
24+
log.debug('Failed to select multiplexer pane')
2525
return false
2626
end
2727
local new_pane = multiplexer.current_pane_id()
2828
if not new_pane then
29-
log.error('Failed to get multiplexer pane ID')
29+
log.debug('Failed to get multiplexer pane ID')
3030
return false
3131
end
3232

0 commit comments

Comments
 (0)