blob: 01bd4bd3f9d980eebd0964c5612c6c91dc6f1d2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Copyright 2024 syzkaller project authors. All rights reserved.
// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
package app
import "log"
// TODO: catch these with monitoring.
func Errorf(fmt string, args ...any) {
log.Printf(fmt, args...)
}
func Fatalf(fmt string, args ...any) {
log.Fatalf(fmt, args...)
}
|