File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
dev/devicelab/lib/framework Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -172,6 +172,8 @@ Future<TaskResult> runTask(
172
172
..add ('--browser-name=android-chrome' );
173
173
}
174
174
175
+ stdout.writeln ('Starting process for task: [$taskName ]' );
176
+
175
177
final Process runner = await startProcess (
176
178
dartBin,
177
179
< String > [
@@ -208,15 +210,15 @@ Future<TaskResult> runTask(
208
210
}
209
211
}
210
212
if (! silent) {
211
- stdout.writeln ('[$taskName ] [STDOUT] $line ' );
213
+ stdout.writeln ('[${ DateTime . now ()} ] [STDOUT] $line ' );
212
214
}
213
215
});
214
216
215
217
final StreamSubscription <String > stderrSub = runner.stderr
216
218
.transform <String >(const Utf8Decoder ())
217
219
.transform <String >(const LineSplitter ())
218
220
.listen ((String line) {
219
- stderr.writeln ('[$taskName ] [STDERR] $line ' );
221
+ stderr.writeln ('[${ DateTime . now ()} ] [STDERR] $line ' );
220
222
});
221
223
222
224
try {
You can’t perform that action at this time.
0 commit comments