Fixed observable logger, added build stage for frontend

dependencies update

closes #131
This commit is contained in:
2024-03-14 11:59:33 +01:00
parent 9cf1a3bc7e
commit b45107c94b
6 changed files with 140 additions and 3427 deletions

View File

@@ -20,7 +20,9 @@ func NewObservableLogger() *ObservableLogger {
}
func (o *ObservableLogger) Write(p []byte) (n int, err error) {
logsChan <- rxgo.Of(string(p))
go func() {
logsChan <- rxgo.Of(string(p))
}()
n = len(p)
err = nil