mirror of
https://github.com/c0re100/gotdlib.git
synced 2026-02-22 04:30:17 +01:00
Make TDLib log output easily
This commit is contained in:
parent
b2327b9644
commit
469cae3b44
1 changed files with 12 additions and 16 deletions
|
|
@ -37,24 +37,20 @@ func WithProxy(req *AddProxyRequest) Option {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func SetLogVerbosityLevel(level int32) Option {
|
func SetLogLevel(level int32) {
|
||||||
return func(client *Client) {
|
_, _ = SetLogVerbosityLevel(&SetLogVerbosityLevelRequest{
|
||||||
client.SetLogVerbosityLevel(&SetLogVerbosityLevelRequest{
|
|
||||||
NewVerbosityLevel: level,
|
NewVerbosityLevel: level,
|
||||||
})
|
})
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func SetFilePath(path string) Option {
|
func SetFilePath(path string) {
|
||||||
return func(client *Client) {
|
_, _ = SetLogStream(&SetLogStreamRequest{
|
||||||
client.SetLogStream(&SetLogStreamRequest{
|
|
||||||
LogStream: &LogStreamFile{
|
LogStream: &LogStreamFile{
|
||||||
Path: path,
|
Path: path,
|
||||||
MaxFileSize: 10485760,
|
MaxFileSize: 10485760,
|
||||||
RedirectStderr: true,
|
RedirectStderr: true,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewClient(authorizationStateHandler AuthorizationStateHandler, options ...Option) (*Client, error) {
|
func NewClient(authorizationStateHandler AuthorizationStateHandler, options ...Option) (*Client, error) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue