Skip to content

Commit

Permalink
chore: Fix unused var (#4491)
Browse files Browse the repository at this point in the history
  • Loading branch information
ioanabrooks authored Sep 28, 2023
1 parent e0c819b commit 1b2f290
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions build-system-tests/scripts/checkReactNativeLog.ts
Original file line number Diff line number Diff line change
@@ -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();

Expand Down Expand Up @@ -91,7 +91,10 @@ const checkStartMessage = async (
* @returns {boolean} hasError
*/
const checkErrorMessage = async (logLines: string[]): Promise<boolean> => {
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)
Expand Down

0 comments on commit 1b2f290

Please sign in to comment.