mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-03 20:07:36 +03:00
platform: Refactor log interface
This commit is contained in:
parent
3cadc90375
commit
1825869124
7 changed files with 35 additions and 19 deletions
3
box.go
3
box.go
|
@ -41,6 +41,7 @@ type Options struct {
|
|||
option.Options
|
||||
Context context.Context
|
||||
PlatformInterface platform.Interface
|
||||
PlatformLogWriter log.PlatformWriter
|
||||
}
|
||||
|
||||
func New(options Options) (*Box, error) {
|
||||
|
@ -71,7 +72,7 @@ func New(options Options) (*Box, error) {
|
|||
Observable: needClashAPI,
|
||||
DefaultWriter: defaultLogWriter,
|
||||
BaseTime: createdAt,
|
||||
PlatformWriter: options.PlatformInterface,
|
||||
PlatformWriter: options.PlatformLogWriter,
|
||||
})
|
||||
if err != nil {
|
||||
return nil, E.Cause(err, "create log factory")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue