From 629e0791c647e18d5c8a3ae9241f4e57f3ebdf36 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Tue, 22 Aug 2023 03:39:47 -0500 Subject: [PATCH] fix(wezterm): remove erroneous print from wezterm --- dots/.config/wezterm/lib/log.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/dots/.config/wezterm/lib/log.lua b/dots/.config/wezterm/lib/log.lua index 80d9db51..4c10a93a 100644 --- a/dots/.config/wezterm/lib/log.lua +++ b/dots/.config/wezterm/lib/log.lua @@ -13,7 +13,6 @@ local M = {} local function system_log(message, log_level) local log_unit = "wezterm" if os_detected == "linux" then - print(string.format("systemd-cat -t %s -p %s echo '%s'", log_unit, log_level:lower(), message)) local handle = io.popen(string.format("systemd-cat -t %s -p %s echo '%s'", log_unit, log_level:lower(), message)) ---@diagnostic disable-next-line: need-check-nil local output = handle:read("*a")