Skip to content

Commit 26257d2

Browse files
authoredNov 25, 2024··
feat: consumer add support custom logger (#293)
1 parent e75712d commit 26257d2

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed
 

‎consumer/config.go

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import (
44
"net/http"
55

66
sls "github.com/aliyun/aliyun-log-go-sdk"
7+
"github.com/go-kit/kit/log"
78
)
89

910
type LogHubConfig struct {
@@ -65,6 +66,7 @@ type LogHubConfig struct {
6566
MaxFetchLogGroupCount int
6667
CursorStartTime int64 // Unix time stamp; Units are seconds.
6768
InOrder bool
69+
Logger log.Logger
6870
AllowLogLevel string
6971
LogFileName string
7072
IsJsonType bool

‎consumer/worker.go

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package consumerLibrary
22

33
import (
4-
"os"
54
"io"
5+
"os"
66
"sync"
77
"time"
88

@@ -53,7 +53,11 @@ func InitConsumerWorkerWithCheckpointTracker(option LogHubConfig, do func(int, *
5353
// InitConsumerWorkerWithProcessor
5454
// you need save checkpoint by yourself and can do something after consumer shutdown
5555
func InitConsumerWorkerWithProcessor(option LogHubConfig, processor Processor) *ConsumerWorker {
56-
logger := logConfig(option)
56+
logger := option.Logger
57+
if logger == nil {
58+
logger = logConfig(option)
59+
}
60+
5761
consumerClient := initConsumerClient(option, logger)
5862
consumerHeatBeat := initConsumerHeatBeat(consumerClient, logger)
5963
consumerWorker := &ConsumerWorker{

0 commit comments

Comments
 (0)
Please sign in to comment.