set mochi-2e2 as submodule

* update go version to 1.23
* remove sha256-simd dependency
* fix logger file path
This commit is contained in:
Lawrence, Rendall
2024-10-01 16:17:42 +03:00
parent b211866cf3
commit 9fc94617ce
10 changed files with 373 additions and 327 deletions
+1 -2
View File
@@ -32,9 +32,8 @@ var (
// otherwise any goroutine, which uses logger will wait logger initialization
func ConfigureLogger(output, level string, formatted, colored bool) (err error) {
lvl := zerolog.WarnLevel
output = strings.ToLower(output)
var w io.Writer
switch output {
switch strings.ToLower(output) {
case "stderr", "":
w = os.Stderr
case "stdout":