Могу ли я распечатать как console.warn с emscripten? - PullRequest
0 голосов
/ 18 марта 2020

Можно ли выводить предупреждение консоли вместо журнала консоли из C / C ++?

Пока что printf("Message") будет печататься на обычном console.log на стороне JS, можно ли печатать как предупреждение типа console.warn?

1 Ответ

0 голосов
/ 19 марта 2020

В сгенерированном файле html стандартный вывод отображается на 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

...