mirror of
https://github.com/spotiflacapp/SpotiFLAC-Mobile.git
synced 2026-06-01 03:15:17 +07:00
chore: increase log buffer size from 500 to 1000 entries
This commit is contained in:
parent
523b1edc44
commit
4afc14dee8
1 changed files with 2 additions and 2 deletions
|
|
@ -33,8 +33,8 @@ var (
|
|||
func GetLogBuffer() *LogBuffer {
|
||||
logBufferOnce.Do(func() {
|
||||
globalLogBuffer = &LogBuffer{
|
||||
entries: make([]LogEntry, 0, 500),
|
||||
maxSize: 500,
|
||||
entries: make([]LogEntry, 0, 1000),
|
||||
maxSize: 1000,
|
||||
loggingEnabled: false, // Default: disabled for performance (user can enable in settings)
|
||||
}
|
||||
})
|
||||
|
|
|
|||
Loading…
Reference in a new issue