github.com/google/syzkaller@v0.0.0-20251211124644-a066d2bc4b02/syz-cluster/pkg/app/logging.go (about)

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