Skip to content

Commit ae88e5a

Browse files
authored
Merge pull request #26 from axiomhq/fix-traces-record-filtering
add TRACE to the log line regexp
2 parents a2ca3d1 + 480bf99 commit ae88e5a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

server/server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ var (
3838
axiomMetaInfo = map[string]string{}
3939
)
4040

41-
var logLineRgx, _ = regexp.Compile(`^([0-9.:TZ-]{20,})\s+([0-9a-f-]{36})\s+(ERROR|INFO|WARN|DEBUG)\s+(.*)`)
41+
var logLineRgx, _ = regexp.Compile(`^([0-9.:TZ-]{20,})\s+([0-9a-f-]{36})\s+(ERROR|INFO|WARN|DEBUG|TRACE)\s+(.*)`)
4242

4343
func init() {
4444
logger, _ = zap.NewProduction()

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package version
22

33
// manually set constant version
4-
const version string = "v8"
4+
const version string = "v9"
55

66
// Get returns the Go module version of the axiom-go module.
77
func Get() string {

0 commit comments

Comments
 (0)