Export info log level setter for Android (#1518)

This commit is contained in:
Zoltan Papp
2024-02-01 16:30:38 +01:00
committed by GitHub
parent 93cab49696
commit 8604add997

View File

@ -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 {