Commit 3c40c855 authored by Yegor's avatar Yegor Committed by GitHub

simplify lockfile-related message; move details to verbose level (#5556)

parent 31366204
......@@ -62,10 +62,11 @@ class Cache {
locked = true;
} on FileSystemException {
if (!printed) {
printStatus('Waiting to be able to obtain lock of Flutter binary artifacts directory...');
printTrace('Waiting to be able to obtain lock of Flutter binary artifacts directory: ${_lock.path}');
printStatus('Waiting for another flutter command to release the startup lock...');
printed = true;
}
await new Future/*<Null>*/.delayed(const Duration(milliseconds: 50));
await new Future<Null>.delayed(const Duration(milliseconds: 50));
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment