Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
lovegaoshi committed Dec 12, 2024
1 parent 9299e91 commit 6509450
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/utils/Utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ export const getExt = (url: string) => {

interface ExecWhenTrue {
loopCheck: () => Promise<boolean>;
executeFn: () => void;
executeFn: () => unknown;
wait?: number;
loopGuard?: number;
funcName?: string;
Expand All @@ -223,4 +223,7 @@ export const execWhenTrue = async ({
}
}
executeFn();
logger.debug(
`[ExecWhenTrue] function ${funcName} executed after ${loops} try.`,
);
};

0 comments on commit 6509450

Please sign in to comment.