Можно ли выводить предупреждение консоли вместо журнала консоли из C / C ++?
Пока что printf("Message") будет печататься на обычном console.log на стороне JS, можно ли печатать как предупреждение типа console.warn?
printf("Message")
console.log
console.warn
В сгенерированном файле html стандартный вывод отображается на console.log().
console.log()
Например
var Module = { preRun: [], postRun: [], print: function(text) { if (arguments.length > 1) text = Array.prototype.slice.call(arguments).join(' '); console.warn(text); }, printErr: function(text) { if (arguments.length > 1) text = Array.prototype.slice.call(arguments).join(' '); console.error(text); },
https://emscripten.org/docs/api_reference/module.html?highlight=stdout#Module .print