logger.js 422 B

1234567891011121314151617181920212223
  1. export default class Logger {
  2. info(msg) {
  3. console.log(
  4. '%cInfo: %c' + msg,
  5. 'color:#FF0080;font-weight:bold',
  6. 'color: #FF509B'
  7. )
  8. }
  9. warn(msg) {
  10. console.log(
  11. '%cWarn: %c' + msg,
  12. 'color:#FF6600;font-weight:bold',
  13. 'color: #FF9933'
  14. )
  15. }
  16. tips(msg) {
  17. console.log(
  18. '%cTips: %c' + msg,
  19. 'color:#00B200;font-weight:bold',
  20. 'color: #00CC33'
  21. )
  22. }
  23. }