1
0
Fork 0
mirror of https://github.com/zigzap/zap.git synced 2025-10-20 15:14:08 +00:00

fix: _debug typo in startWithLogging

debug = true should have been _debug = true.
This commit is contained in:
Giuseppe Cesarano 2024-04-27 14:14:09 +02:00 committed by GitHub
parent d83bf5afa7
commit 997627f288
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -118,7 +118,7 @@ pub fn enableDebugLog() void {
/// start Zap with debug logging on
pub fn startWithLogging(args: fio.fio_start_args) void {
debug = true;
_debug = true;
fio.fio_start(args);
}