improve unix socket support, always embed commit

This commit is contained in:
Laptop
2025-06-18 22:34:38 +03:00
parent 3d96470a05
commit a0551d742b
8 changed files with 66 additions and 13 deletions

View File

@@ -1,8 +1,8 @@
package misc
import (
"fmt"
"io"
"log"
"sync"
"git.maid.zone/stuff/soundcloak/lib/cfg"
@@ -41,7 +41,7 @@ func (pr *ProxyReader) Close() error {
func Log(what ...any) {
if cfg.Debug {
fmt.Println(what...)
log.Println(what...)
}
}