Skip to content

Commit

Permalink
add TRACE to the log line regexp
Browse files Browse the repository at this point in the history
  • Loading branch information
dasfmi committed Jan 2, 2024
1 parent a2ca3d1 commit 480bf99
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ var (
axiomMetaInfo = map[string]string{}
)

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

func init() {
logger, _ = zap.NewProduction()
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package version

// manually set constant version
const version string = "v8"
const version string = "v9"

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

0 comments on commit 480bf99

Please sign in to comment.