Skip to content

Commit d714bba

Browse files
authored
chore: show waypoint count in cache log (#164)
1 parent 4f694a6 commit d714bba

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/cli/bin/cli.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,11 +110,11 @@ Future<void> waitForSystem(Database db, GalaxyStats galaxy) async {
110110
final systems = await db.systems.countSystemRecords();
111111
final waypoints = await db.systems.countSystemWaypoints();
112112
if (systems >= galaxy.systemCount && waypoints >= galaxy.waypointCount) {
113-
logger.info('Systems and waypoints are cached.');
113+
logger.info('$systems systems and $waypoints waypoints are cached.');
114114
return;
115115
}
116116
logger.info(
117-
'Waiting for systems to be cached... '
117+
'Waiting for systems and waypoints to be cached... '
118118
'$systems/${galaxy.systemCount} systems and '
119119
'$waypoints/${galaxy.waypointCount} waypoints.',
120120
);

0 commit comments

Comments
 (0)