diff --git a/src/network/layer/CacheLayer.zig b/src/network/layer/CacheLayer.zig index cb5b3c77..3db0a3c1 100644 --- a/src/network/layer/CacheLayer.zig +++ b/src/network/layer/CacheLayer.zig @@ -17,7 +17,8 @@ // along with this program. If not, see . const std = @import("std"); -const log = @import("../../log.zig"); +const lp = @import("lightpanda"); +const log = lp.log; const http = @import("../http.zig"); const Client = @import("../../browser/HttpClient.zig").Client; diff --git a/src/network/layer/InterceptionLayer.zig b/src/network/layer/InterceptionLayer.zig index 81b231f4..c75ef1a1 100644 --- a/src/network/layer/InterceptionLayer.zig +++ b/src/network/layer/InterceptionLayer.zig @@ -18,7 +18,8 @@ const std = @import("std"); const builtin = @import("builtin"); -const log = @import("../../log.zig"); +const lp = @import("lightpanda"); +const log = lp.log; const IS_DEBUG = builtin.mode == .Debug; diff --git a/src/network/layer/RobotsLayer.zig b/src/network/layer/RobotsLayer.zig index 6ac36890..d4d5783a 100644 --- a/src/network/layer/RobotsLayer.zig +++ b/src/network/layer/RobotsLayer.zig @@ -17,7 +17,8 @@ // along with this program. If not, see . const std = @import("std"); -const log = @import("../../log.zig"); +const lp = @import("lightpanda"); +const log = lp.log; const URL = @import("../../browser/URL.zig"); const Robots = @import("../Robots.zig"); diff --git a/src/network/layer/WebBotAuthLayer.zig b/src/network/layer/WebBotAuthLayer.zig index 6367e7e8..7e67af49 100644 --- a/src/network/layer/WebBotAuthLayer.zig +++ b/src/network/layer/WebBotAuthLayer.zig @@ -17,7 +17,8 @@ // along with this program. If not, see . const std = @import("std"); -const log = @import("../../log.zig"); +const lp = @import("lightpanda"); +const log = lp.log; const URL = @import("../../browser/URL.zig"); const WebBotAuth = @import("../WebBotAuth.zig");