Skip to content

Commit

Permalink
Create patch release (#8)
Browse files Browse the repository at this point in the history
* Create patch release

Signed-off-by: Arrobo, Gabriel <[email protected]>

* Properly name the `component` in the logger

Signed-off-by: Arrobo, Gabriel <[email protected]>

---------

Signed-off-by: Arrobo, Gabriel <[email protected]>
  • Loading branch information
gab-arrobo authored Nov 5, 2024
1 parent d53bf96 commit e6af42b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.1-dev
2.0.1
6 changes: 3 additions & 3 deletions logger/logger.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ func init() {
panic(err)
}

AppLog = log.Sugar().With("component", "UADP", "category", "App")
PfcpLog = log.Sugar().With("component", "UADP", "category", "Pfcp")
CfgLog = log.Sugar().With("component", "UADP", "category", "Config")
AppLog = log.Sugar().With("component", "UPFAdapter", "category", "App")
PfcpLog = log.Sugar().With("component", "UPFAdapter", "category", "Pfcp")
CfgLog = log.Sugar().With("component", "UPFAdapter", "category", "Config")
}

func GetLogger() *zap.Logger {
Expand Down

0 comments on commit e6af42b

Please sign in to comment.