Skip to content

Commit

Permalink
chore: inspect
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelramos committed Jul 19, 2024
1 parent 13d6ef2 commit 37ed32b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export function logging({ github, context, core }) {
const util = require('util');
import { inspect } from 'node:util';

console.log(util.inspect({ github, context, core }, { showHidden: false, depth: null, colors: true }))
export function logging({ github, context, core }) {
console.log(inspect({ github, context, core }, { showHidden: false, depth: null, colors: true }))
}

0 comments on commit 37ed32b

Please sign in to comment.