We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0efb7f8 commit cf49554Copy full SHA for cf49554
services/billing/run.go
@@ -3,7 +3,6 @@ package billing
3
import (
4
"context"
5
"errors"
6
- "github.com/liuguangw/billing_go/services"
7
"os"
8
"os/signal"
9
"syscall"
@@ -18,7 +17,7 @@ func (s *Server) Run(logFilePath string) error {
18
17
//退出前,执行清理任务
19
defer s.clean()
20
//输出build信息
21
- services.ShowVersionInfo(s.logger)
+ s.logger.Info("(###) billing service starting ...")
22
s.logger.Info("log file: " + s.logFile.Name())
23
//初始化tcp Listener
24
if err := s.initListener(); err != nil {
0 commit comments