Update log scopes in the various config/ files

This commit is contained in:
Ben Buhse 2026-02-17 16:23:19 -06:00
commit 11cef4b2f8
No known key found for this signature in database
GPG key ID: 7916ACFCD38FD0B4
6 changed files with 8 additions and 8 deletions

View file

@ -183,4 +183,4 @@ const Config = @import("../Config.zig");
const helpers = @import("helpers.zig"); const helpers = @import("helpers.zig");
const log = std.log.scoped(.config_bar); const log = std.log.scoped(.BarConfig);

View file

@ -169,4 +169,4 @@ const Config = @import("../Config.zig");
const helpers = @import("helpers.zig"); const helpers = @import("helpers.zig");
const log = std.log.scoped(.config_input); const log = std.log.scoped(.InputConfig);

View file

@ -187,7 +187,7 @@ fn loadAnchorsBlock(config: *Config, parser: *kdl.Parser, hostname: ?[]const u8)
.left => config.tag_overlay_config.?.anchor_left = val, .left => config.tag_overlay_config.?.anchor_left = val,
} }
logDebugSettingNode(name, val_str); logDebugSettingNode(name, val_str);
} else { } else |_| {
logWarnInvalidNodeArg(name, val_str); logWarnInvalidNodeArg(name, val_str);
} }
} else { } else {
@ -274,4 +274,4 @@ const TagOverlay = @import("../TagOverlay.zig");
const helpers = @import("helpers.zig"); const helpers = @import("helpers.zig");
const log = std.log.scoped(.config_tag_overlay); const log = std.log.scoped(.TagOverlayConfig);

View file

@ -2,7 +2,7 @@
// //
// SPDX-License-Identifier: GPL-3.0-only // SPDX-License-Identifier: GPL-3.0-only
pub const NodeName = enum { const NodeName = enum {
width, width,
color_focused, color_focused,
color_unfocused, color_unfocused,
@ -79,4 +79,4 @@ const Config = @import("../Config.zig");
const helpers = @import("helpers.zig"); const helpers = @import("helpers.zig");
const log = std.log.scoped(.config_borders); const log = std.log.scoped(.config_border);

View file

@ -232,4 +232,4 @@ const XkbBindings = @import("../XkbBindings.zig");
const helpers = @import("helpers.zig"); const helpers = @import("helpers.zig");
const log = std.log.scoped(.config_keybinds); const log = std.log.scoped(.config_keybind);

View file

@ -94,4 +94,4 @@ const Config = @import("../Config.zig");
const helpers = @import("helpers.zig"); const helpers = @import("helpers.zig");
const log = std.log.scoped(.config_pointer_binds); const log = std.log.scoped(.config_pointer_bind);