diff --git a/build-system-tests/scripts/checkReactNativeLog.ts b/build-system-tests/scripts/checkReactNativeLog.ts index 8f127b7fb93..ff6560c7188 100644 --- a/build-system-tests/scripts/checkReactNativeLog.ts +++ b/build-system-tests/scripts/checkReactNativeLog.ts @@ -1,6 +1,6 @@ -import fs from 'fs'; -import { Command } from 'commander'; import { PromisePool } from '@supercharge/promise-pool'; +import { Command } from 'commander'; +import fs from 'fs'; const program = new Command(); @@ -91,7 +91,10 @@ const checkStartMessage = async ( * @returns {boolean} hasError */ const checkErrorMessage = async (logLines: string[]): Promise => { - log('info', `Checking log file ${logFileName} for errors...`); + log( + 'info', + `Checking log file ${logFileName} on ${platform} platform for errors...` + ); const { results } = await PromisePool.withConcurrency(1) .for(logLines)