Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 355 Bytes

README.md

File metadata and controls

25 lines (21 loc) · 355 Bytes

flutter_skye_log

导入

flutter_skye_log:
    git:
      url: [email protected]:skyesk/flutter_skye_log.git
      ref: main

使用

在main中

    Logger.init(logLevel: LogLevel.INFO);

在需要打log的页面

    Logger logger = Logger.instance();

打印log时

    logger.debug("debug");