1
0
mirror of https://github.com/MontFerret/ferret.git synced 2024-12-16 11:37:36 +02:00
ferret/pkg/stdlib/utils/log.go

31 lines
619 B
Go
Raw Normal View History

2018-10-07 07:07:44 +02:00
package utils
import (
"context"
2018-10-14 19:06:27 +02:00
2018-10-07 07:07:44 +02:00
"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) {
2018-10-07 07:07:44 +02:00
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
}