mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-14 11:23:02 +02:00
32 lines
617 B
Go
32 lines
617 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"
|
|
)
|
|
|
|
/*
|
|
* Writes messages into the system log.
|
|
*/
|
|
func Log(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
|
|
}
|