public class FMULog
extends java.lang.Object
This Java method is called via a callback from the FMI C-side.
The FMI log method optionally takes a variable number of arguments
and handles #TypevalueReference#
,
specially where Type is one of r, i, b or s. To print a #,
use ##.
Red (cxh) |
Red (cxh) |
Modifier and Type | Field and Description |
---|---|
private static boolean |
_printedMessage |
Constructor and Description |
---|
FMULog() |
Modifier and Type | Method and Description |
---|---|
static void |
log(com.sun.jna.Pointer fmiComponent,
java.lang.String instanceName,
int status,
java.lang.String category,
java.lang.String message,
com.sun.jna.Pointer parameters)
Log a message.
|
public static void log(com.sun.jna.Pointer fmiComponent, java.lang.String instanceName, int status, java.lang.String category, java.lang.String message, com.sun.jna.Pointer parameters)
fmiComponent
- The component that was instantiated.instanceName
- The name of the instance of the FMU.status
- The fmiStatus, see
FMILibrary.FMIStatus
category
- The category of the message,
defined by the tool that created the fmu. Typical
values are "log" or "error".message
- The message in printf formatparameters
- The printf style parameters.