mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-16 11:37:36 +02:00
8bb7941864
* rename utils.LOG -> utils.PRINT * rename utils.Logs -> utils.Print
31 lines
619 B
Go
31 lines
619 B
Go
package utils
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/MontFerret/ferret/pkg/runtime/core"
|
|
"github.com/MontFerret/ferret/pkg/runtime/logging"
|
|
"github.com/MontFerret/ferret/pkg/runtime/values"
|
|
)
|
|
|
|
// Print writes messages into the system log.
|
|
func Print(ctx context.Context, args ...core.Value) (core.Value, error) {
|
|
err := core.ValidateArgs(args, 1, core.MaxArgs)
|
|
|
|
if err != nil {
|
|
return values.None, err
|
|
}
|
|
|
|
messages := make([]interface{}, 0, len(args))
|
|
|
|
for _, input := range args {
|
|
messages = append(messages, input)
|
|
}
|
|
|
|
logger := logging.FromContext(ctx)
|
|
|
|
logger.Print(messages...)
|
|
|
|
return values.None, nil
|
|
}
|