市场夺宝奇兵
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
306 B

  1. import {verboseLog} from './log.js';
  2. // When `verbose` is `short|full|custom`, print each command's error when it fails
  3. export const logError = (result, verboseInfo) => {
  4. if (result.failed) {
  5. verboseLog({
  6. type: 'error',
  7. verboseMessage: result.shortMessage,
  8. verboseInfo,
  9. result,
  10. });
  11. }
  12. };