Skip to content

Commit

Permalink
fix: don't use gray logs (hard to read)
Browse files Browse the repository at this point in the history
  • Loading branch information
macalinao committed Jan 5, 2022
1 parent 9a2b6d0 commit 900ea18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/chai-solana/src/printInstructionLogs.ts
Expand Up @@ -23,15 +23,15 @@ export const formatInstructionLogs = (
const entryStr = formatLogEntry(entry, true);
switch (entry.type) {
case "text":
return colors.gray(entryStr);
return colors.white(entryStr);
case "cpi":
return colors.cyan(entryStr);
case "programError":
return colors.red(entryStr);
case "runtimeError":
return colors.red(entryStr);
case "system":
return colors.gray(entryStr);
return colors.white(entryStr);
case "success":
return colors.green(entryStr);
}
Expand Down

0 comments on commit 900ea18

Please sign in to comment.