Skip to content

Commit

Permalink
feat: add custom task handlers for logging
Browse files Browse the repository at this point in the history
  • Loading branch information
rabi-siddique committed Mar 26, 2024
1 parent e7fac8f commit bab514a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions plugins/keplr-plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ module.exports = (on, config) => {
console.warn('\u001B[33m', 'WARNING:', message, '\u001B[0m');
return true;
},
info(message) {
console.log('\u001B[36m', 'INFO:', message, '\u001B[0m');
return true;
},
// playwright commands for Keplr
initPlaywright: playwright.init,
assignWindows: playwright.assignWindows,
Expand Down

0 comments on commit bab514a

Please sign in to comment.