Skip to content

Commit ef87253

Browse files
committed
Update info message
1 parent 9ef78ab commit ef87253

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tang-commons/src/main/kotlin/com/tang/commons/utils/queue/bootstrap/QueueBootstrap.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ class QueueBootstrap(
4747
* 创建一个环形队列;并开启定时扫描队列
4848
*/
4949
fun start(): WheelQueue {
50-
LOGGER.info("Timer wheel queue scanner starting...")
50+
LOGGER.info("Starting wheel delay queue scanner.")
5151
val wheelQueue = WheelQueue(ticksPerWheel, tickDuration, unit)
5252
val timerTask = QueueScanTimer(wheelQueue, ticksPerWheel, tickDuration, unit)
5353
newScheduledThreadPool.scheduleWithFixedDelay(timerTask, 0, tickDuration, unit)
54-
LOGGER.info("Timer wheel queue scanner start up.")
54+
LOGGER.info("Successfully started wheel delay queue scanner.")
5555
return wheelQueue
5656
}
5757

0 commit comments

Comments
 (0)