Update log scopes in the various config/ files
This commit is contained in:
parent
b4c4019cad
commit
11cef4b2f8
6 changed files with 8 additions and 8 deletions
|
|
@ -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);
|
||||||
|
|
|
||||||
|
|
@ -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);
|
||||||
|
|
|
||||||
|
|
@ -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);
|
||||||
|
|
|
||||||
|
|
@ -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);
|
||||||
|
|
|
||||||
|
|
@ -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);
|
||||||
|
|
|
||||||
|
|
@ -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);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue