Files
netrunner/ux/output.go
T
2026-01-14 19:56:11 -08:00

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)
}