removed redundant endding semicolons

This commit is contained in:
2025-03-07 21:12:21 +09:00
parent e56c45b3bf
commit ecc1d4580f
7 changed files with 11 additions and 11 deletions

View File

@ -148,10 +148,10 @@ func (l *AppLogger) write(id string, level hodu.LogLevel, call_depth int, fmtstr
now = time.Now()
_, off_s = now.Zone()
off_m = off_s / 60;
off_h = off_m / 60;
off_m = off_m % 60;
if off_m < 0 { off_m = -off_m; }
off_m = off_s / 60
off_h = off_m / 60
off_m = off_m % 60
if off_m < 0 { off_m = -off_m }
sb.WriteString(
fmt.Sprintf("%04d-%02d-%02d %02d:%02d:%02d %+03d%02d ",