mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-16 08:46:08 +03:00
logfn doesn't need to be pub
This commit is contained in:
@ -110,7 +110,7 @@ pub fn main() !MainReturn {
|
||||
}
|
||||
|
||||
// The function std.log will call.
|
||||
pub fn logFn(
|
||||
fn logFn(
|
||||
comptime level: std.log.Level,
|
||||
comptime scope: @TypeOf(.EnumLiteral),
|
||||
comptime format: []const u8,
|
||||
@ -161,6 +161,7 @@ pub const std_options: std.Options = .{
|
||||
.Debug => .debug,
|
||||
else => .info,
|
||||
},
|
||||
|
||||
.logFn = logFn,
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user