mirror of
https://github.com/vvsviridov/enm-cli.git
synced 2025-10-23 00:12:23 +00:00
11 lines
339 B
JavaScript
Executable File
11 lines
339 B
JavaScript
Executable File
const chalk = require('chalk')
|
|
|
|
|
|
function logDetails(networkDetails) {
|
|
const output = networkDetails.map(details => ` ${chalk.gray(details.key)}: ${details.value === 'UNSYNCHRONIZED' ? '⌛ ' + chalk.yellow(details.value): chalk.gray(details.value)}`)
|
|
console.log(`
|
|
${output.join('\n')}
|
|
`)
|
|
}
|
|
|
|
module.exports = logDetails |