Skip to content

Commit faab449

Browse files
authored
Merge pull request #76 from lightpanda-io/remove_std_debug
remove std.debugs
2 parents 47ed51d + ec7073b commit faab449

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

src/v8.zig

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2749,7 +2749,6 @@ pub const Inspector = struct {
27492749
aux_data: ?[]const u8,
27502750
is_default: bool,
27512751
) void {
2752-
std.log.debug("Inspector contextCreated called", .{});
27532752
var auxData_ptr: [*c]const u8 = undefined;
27542753
var auxData_len: usize = undefined;
27552754
if (aux_data) |data| {
@@ -2806,7 +2805,6 @@ pub export fn v8_inspector__Client__IMPL__runMessageLoopOnPause(
28062805
contextGroupId: c_int,
28072806
) callconv(.C) void {
28082807
_ = contextGroupId;
2809-
std.log.debug("InspectorClient runMessageLoopOnPause called", .{});
28102808
const inspector = Inspector.fromData(data);
28112809
_ = inspector;
28122810
// TODO
@@ -2816,7 +2814,6 @@ pub export fn v8_inspector__Client__IMPL__quitMessageLoopOnPause(
28162814
_: *c.InspectorClientImpl,
28172815
data: *anyopaque,
28182816
) callconv(.C) void {
2819-
std.log.debug("InspectorClient quitMessageLoopOnPause called", .{});
28202817
const inspector = Inspector.fromData(data);
28212818
_ = inspector;
28222819
// TODO
@@ -2828,7 +2825,6 @@ pub export fn v8_inspector__Client__IMPL__runIfWaitingForDebugger(
28282825
contextGroupId: c_int,
28292826
) callconv(.C) void {
28302827
_ = contextGroupId;
2831-
std.log.debug("InspectorClient runIfWaitingForDebugger called", .{});
28322828
const inspector = Inspector.fromData(data);
28332829
_ = inspector;
28342830
// TODO
@@ -2847,7 +2843,6 @@ pub export fn v8_inspector__Client__IMPL__consoleAPIMessage(
28472843
_: *c.StackTrace,
28482844
) callconv(.C) void {
28492845
_ = contextGroupId;
2850-
std.log.debug("InspectorClient consoleAPIMessage called", .{});
28512846
const inspector = Inspector.fromData(data);
28522847
_ = inspector;
28532848
// TODO
@@ -2857,7 +2852,6 @@ pub export fn v8_inspector__Client__IMPL__ensureDefaultContextInGroup(
28572852
_: *c.InspectorClientImpl,
28582853
data: *anyopaque,
28592854
) callconv(.C) ?*const C_Context {
2860-
std.log.debug("InspectorClient ensureDefaultContextInGroup called", .{});
28612855
const inspector = Inspector.fromData(data);
28622856
return inspector.ctx_handle;
28632857
}
@@ -2952,7 +2946,6 @@ pub export fn v8_inspector__Channel__IMPL__flushProtocolNotifications(
29522946
_: *c.InspectorChannelImpl,
29532947
data: *anyopaque,
29542948
) callconv(.C) void {
2955-
std.log.debug("InspectorChannel flushProtocolNotifications called", .{});
29562949
const inspector = Inspector.fromData(data);
29572950
_ = inspector;
29582951
// TODO

0 commit comments

Comments
 (0)