fix: Add workaround for SES that reject arrow strings
This commit is contained in:
parent
193a1064ca
commit
e2932d9d51
@ -37,13 +37,15 @@ export default async function wtnsDebug(input, wasmFileName, wtnsFileName, symNa
|
||||
if (options.set) {
|
||||
if (!sym) sym = await loadSyms(symName);
|
||||
wcOps.logSetSignal= function(labelIdx, value) {
|
||||
if (logger) logger.info("SET " + sym.labelIdx2Name[labelIdx] + " <-- " + value.toString());
|
||||
// The line below splits the arrow log into 2 strings to avoid some Secure ECMAScript issues
|
||||
if (logger) logger.info("SET " + sym.labelIdx2Name[labelIdx] + " <" + "-- " + value.toString());
|
||||
};
|
||||
}
|
||||
if (options.get) {
|
||||
if (!sym) sym = await loadSyms(symName);
|
||||
wcOps.logGetSignal= function(varIdx, value) {
|
||||
if (logger) logger.info("GET " + sym.labelIdx2Name[varIdx] + " --> " + value.toString());
|
||||
// The line below splits the arrow log into 2 strings to avoid some Secure ECMAScript issues
|
||||
if (logger) logger.info("GET " + sym.labelIdx2Name[varIdx] + " --" + "> " + value.toString());
|
||||
};
|
||||
}
|
||||
if (options.trigger) {
|
||||
|
Loading…
Reference in New Issue
Block a user