We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f694a6 commit d714bbaCopy full SHA for d714bba
1 file changed
packages/cli/bin/cli.dart
@@ -110,11 +110,11 @@ Future<void> waitForSystem(Database db, GalaxyStats galaxy) async {
110
final systems = await db.systems.countSystemRecords();
111
final waypoints = await db.systems.countSystemWaypoints();
112
if (systems >= galaxy.systemCount && waypoints >= galaxy.waypointCount) {
113
- logger.info('Systems and waypoints are cached.');
+ logger.info('$systems systems and $waypoints waypoints are cached.');
114
return;
115
}
116
logger.info(
117
- 'Waiting for systems to be cached... '
+ 'Waiting for systems and waypoints to be cached... '
118
'$systems/${galaxy.systemCount} systems and '
119
'$waypoints/${galaxy.waypointCount} waypoints.',
120
);
0 commit comments