blob: c071a6cd716e6cc95d8793627afea716de1f55dc [file] [log] [blame]
import xdc.runtime.Diags;
import xdc.runtime.Log;
/*!
* ======== Msgs ========
* Simple Log Events
*/
module Msgs {
config Log.Event HELLO = {
mask: Diags.ENTRY,
msg: "hello world"
};
config Log.Event GOODBYE = {
mask: Diags.ENTRY,
msg: "goodbye cruel world, status: %d"
};
}