browser: use log instead of std.log

This commit is contained in:
Pierre Tachoire
2024-07-18 16:46:12 +02:00
parent 4434e11bdd
commit b537e52a6d

View File

@@ -208,7 +208,7 @@ pub const Page = struct {
const alloc = self.arena.allocator();
if (try try_catch.err(alloc, self.session.env)) |msg| {
defer alloc.free(msg);
std.log.info("wait error: {s}", .{msg});
log.info("wait error: {s}", .{msg});
return;
}
};