mirror of
https://github.com/luxfi/netrunner.git
synced 2026-07-27 00:04:23 +00:00
16 lines
376 B
Go
16 lines
376 B
Go
// Copyright (C) 2021-2025, Lux Industries Inc. All rights reserved.
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
package ux
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
log "github.com/luxfi/log"
|
|
)
|
|
|
|
//nolint:govet // msg is intentionally a format string that may come from variables
|
|
func Print(logger log.Logger, msg string, args ...interface{}) {
|
|
fmtMsg := fmt.Sprintf(msg, args...)
|
|
log.Info(fmtMsg)
|
|
}
|