mirror of
https://github.com/MontFerret/ferret.git
synced 2025-01-24 03:49:29 +02:00
24d8eedd4c
* Added release notes * #509 fixedOCOD typo * Updated values * Updated comments * Changed stdlib docs format * Changed format of array in docs * Use 'any' instead of 'value' in docs * New format for optional params * Updated docs for testing package * Added namespace information
36 lines
757 B
Go
36 lines
757 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.
|
|
// @param {Value, repeated} message - Print message.
|
|
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 idx, input := range args {
|
|
if idx == 0 {
|
|
messages = append(messages, input)
|
|
} else {
|
|
messages = append(messages, " "+input.String())
|
|
}
|
|
}
|
|
|
|
logger := logging.FromContext(ctx)
|
|
|
|
logger.Print(messages...)
|
|
|
|
return values.None, nil
|
|
}
|