We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 463d34f commit b14f2ceCopy full SHA for b14f2ce
rust/src/logger.rs
@@ -75,7 +75,7 @@ pub struct JsonOutput {
75
pub struct MinimalJson {
76
pub driver_path: String,
77
pub browser_path: String,
78
- pub message: String,
+ pub error: String,
79
}
80
81
impl Logger {
@@ -221,7 +221,7 @@ impl Logger {
221
self.minimal_json.borrow_mut().browser_path =
222
self.clean_browser_path(&message);
223
} else {
224
- self.minimal_json.borrow_mut().message = message.clone();
+ self.minimal_json.borrow_mut().error = message.clone();
225
226
227
log::log!(level, "{}", message);
0 commit comments