Skip to content
This repository was archived by the owner on Jan 30, 2025. It is now read-only.

Commit bbd616e

Browse files
committed
Fix log warn in execution context
1 parent f6e6fc4 commit bbd616e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/execution_context.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ func (e *ExecutionContext) eval(
215215
return nil, errors.New(cdpe.Message)
216216
}
217217

218-
e.logger.Warn("ExecutionContext:eval", "Unexpected DevTools server error: %v", err)
218+
e.logger.Warnf("ExecutionContext:eval", "Unexpected DevTools server error: %v", err)
219219
return nil, err
220220
}
221221
if exceptionDetails != nil {

0 commit comments

Comments
 (0)