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.

8 lines
205 B

  1. //日志输出类
  2. var JSConsole=
  3. {
  4. Chart:{ Log:console.log, Warn:console.warn }, //图形日志
  5. Complier:{ Log:console.log, Warn:console.warn }, //编译器日志
  6. };
  7. export { JSConsole };