Fixed logging
All checks were successful
Build / build (push) Successful in 1m2s

This commit is contained in:
Leon Mika 2026-01-26 11:38:09 +11:00
parent f96b8a8266
commit eda11309bc

1
app.go
View file

@ -51,7 +51,6 @@ func (a *App) LoadCurrentBuffer() (string, error) {
} }
func (a *App) SaveCurrentBuffer(buffer string) error { func (a *App) SaveCurrentBuffer(buffer string) error {
log.Printf("Saving buffer")
return a.store.SaveBuffer(buffer) return a.store.SaveBuffer(buffer)
} }