Add tracing to print front-end command (#14340)

This commit is contained in:
Alexander Markov 2018-01-30 08:52:04 -08:00 committed by GitHub
parent adcb5ab493
commit a0ffbe29ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -95,6 +95,7 @@ Future<String> compile(
if (extraFrontEndOptions != null)
command.addAll(extraFrontEndOptions);
command.add(mainPath);
printTrace(command.join(' '));
final Process server = await processManager
.start(command)
.catchError((dynamic error, StackTrace stack) {