This commit is contained in:
zyyang 2020-12-14 21:37:27 +08:00
parent 33e14d6d64
commit 995284cc0d
1 changed files with 1 additions and 1 deletions

View File

@ -149,7 +149,7 @@ public class TaosDemoCommandLineRunner implements CommandLineRunner {
long a = System.currentTimeMillis();
subTableService.insertAutoCreateTable(data, config.numOfThreadsForInsert, config.frequency);
long b = System.currentTimeMillis();
System.out.println(">>> time cost: " + (b - a) + " ms");
logger.info(">>> time cost: " + (b - a) + " ms");
} else {
subTableService.insert(data, config.numOfThreadsForInsert, config.frequency);
}