Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
auto_track_plugin
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
顾海波
2025-04-23 08:54:28 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
3cf2fd05f9bbe3e6c8a962fd0828df77011377c6
3cf2fd05
1 parent
e9a9966a
【优化】去除日志
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
lib/auto_track/config/queue.dart
lib/auto_track/config/queue.dart
View file @
3cf2fd0
...
...
@@ -85,7 +85,7 @@ class AutoTrackQueue {
Future
<
void
>
flush
()
async
{
try
{
AutoTrackLogger
.
getInstance
().
debug
(
"@@@start flush"
);
//
AutoTrackLogger.getInstance().debug("@@@start flush");
await
_checkInitDataBase
();
if
(
database
==
null
)
{
...
...
@@ -98,7 +98,7 @@ class AutoTrackQueue {
List
<
Map
<
String
,
dynamic
>>
events
=
await
database
!.
query
(
"track"
,
columns:
[
"id"
,
"event"
,
"date"
],
limit:
100
);
if
(
events
.
isEmpty
)
{
AutoTrackLogger
.
getInstance
().
debug
(
"@@@events is empty"
);
//
AutoTrackLogger.getInstance().debug("@@@events is empty");
return
;
}
...
...
Please
register
or
login
to post a comment