From a1fd9f733cc2123129e8522cd8165aba36c1897c Mon Sep 17 00:00:00 2001 From: Borja Clemente Date: Tue, 19 Dec 2023 09:23:30 +0100 Subject: [PATCH] Remove log from imports as it is unused Signed-off-by: Borja Clemente --- src/config/edit.zig | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/config/edit.zig b/src/config/edit.zig index 2e9561c17..c673991df 100644 --- a/src/config/edit.zig +++ b/src/config/edit.zig @@ -2,8 +2,6 @@ const std = @import("std"); const Allocator = std.mem.Allocator; const internal_os = @import("../os/main.zig"); -const log = std.log.scoped(.config); - /// Open the configuration in the OS default editor according to the default /// paths the main config file could be in. pub fn open(alloc_gpa: Allocator) !void {