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 41a7783 commit 3bcb269Copy full SHA for 3bcb269
crates/trigger/src/cli/stdio.rs
@@ -111,15 +111,15 @@ impl StdioLoggingExecutorHooks {
111
&sanitized_component_id,
112
STDOUT_LOG_FILE_SUFFIX,
113
) {
114
- let _ = std::fs::File::create(stdout_log_path);
+ _ = std::fs::File::create(stdout_log_path);
115
}
116
117
if let Some(stderr_log_path) = sanitized_log_path(
118
self.log_dir.as_deref(),
119
120
STDERR_LOG_FILE_SUFFIX,
121
122
- let _ = std::fs::File::create(stderr_log_path);
+ _ = std::fs::File::create(stderr_log_path);
123
124
125
0 commit comments