diff --git a/app/Console/Command/StatisticsShell.php b/app/Console/Command/StatisticsShell.php index 363029627..b97e3b7bf 100644 --- a/app/Console/Command/StatisticsShell.php +++ b/app/Console/Command/StatisticsShell.php @@ -117,7 +117,7 @@ class StatisticsShell extends AppShell { echo "\n\n==================================\nSlow queries by user excluding sync\n==================================\nCount | User | Email\n"; foreach ($data['non_sync_action_users'] as $user_id => $count) { echo sprintf( - "%s | %s\n", + "%s | %s | %s\n", str_pad($count, 5), str_pad($user_id, 5), !empty($users[$user_id]) ? $users[$user_id] : ''