mirror of
https://github.com/mumble-voip/grumble.git
synced 2025-12-20 06:10:00 -08:00
Remove unused field
This commit is contained in:
parent
9c082d3516
commit
d6c4d9f766
1 changed files with 3 additions and 5 deletions
|
|
@ -6,7 +6,6 @@
|
||||||
package logtarget
|
package logtarget
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
|
||||||
"io"
|
"io"
|
||||||
"os"
|
"os"
|
||||||
"sync"
|
"sync"
|
||||||
|
|
@ -23,10 +22,9 @@ type LogTarget interface {
|
||||||
}
|
}
|
||||||
|
|
||||||
type fileLogTarget struct {
|
type fileLogTarget struct {
|
||||||
mu sync.Mutex
|
mu sync.Mutex
|
||||||
logfn string
|
logfn string
|
||||||
file *os.File
|
file *os.File
|
||||||
memLog *bytes.Buffer
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var Default LogTarget
|
var Default LogTarget
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue