Initial project

This commit is contained in:
Cody
2026-03-06 14:56:17 +08:00
parent 977b627b15
commit bf9e099747
1180 changed files with 50973 additions and 0 deletions

View File

@@ -0,0 +1 @@
class LogAdaptor {}

View File

@@ -0,0 +1 @@
class LogConfig {}

View File

@@ -0,0 +1 @@
class ImLogSdk {}

View File

@@ -0,0 +1 @@
class LogRecord {}

View File

@@ -0,0 +1 @@
class ConsolePrinter {}

View File

@@ -0,0 +1 @@
class FilePrinter {}

View File

@@ -0,0 +1,10 @@
class LogPrinter {
LogPrinter._();
static LogPrinter? _instance;
static LogPrinter get instance {
_instance ??= LogPrinter._();
return _instance!;
}
}

View File

@@ -0,0 +1 @@
class NativePrinter {}