refactor: use {t} format specifiers

This commit is contained in:
CJ van den Berg 2025-12-04 14:30:30 +01:00
parent 76f23b0824
commit 090d27d890
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
8 changed files with 19 additions and 21 deletions

View file

@ -1971,7 +1971,7 @@ fn show_or_log_message(self: *Self, operation: enum { show, log }, params_cb: []
if (type_ <= 2)
self.logger_lsp.err_msg("lsp", msg)
else
self.logger_lsp.print("{s}: {s}", .{ @tagName(operation), msg });
self.logger_lsp.print("{t}: {s}", .{ operation, msg });
}
pub fn show_notification(self: *Self, method: []const u8, params_cb: []const u8) !void {