Skip to content

Commit

Permalink
Export info log level setter for Android (netbirdio#1518)
Browse files Browse the repository at this point in the history
  • Loading branch information
pappz committed Feb 1, 2024
1 parent 8ac627d commit 940fb0d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions client/android/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,11 @@ func (c *Client) SetTraceLogLevel() {
log.SetLevel(log.TraceLevel)
}

// SetInfoLogLevel configure the logger to info level
func (c *Client) SetInfoLogLevel() {
log.SetLevel(log.InfoLevel)
}

// PeersList return with the list of the PeerInfos
func (c *Client) PeersList() *PeerInfoArray {

Expand Down

0 comments on commit 940fb0d

Please sign in to comment.