Change "Exit status 0" message to debug level

master
Hauke D 7 years ago
parent bf660de3c5
commit 94d11c36e9

@ -218,7 +218,7 @@ Perl.init = function (readyCallback) {
}, },
onExit: function (status) { // note this may be called multiple times onExit: function (status) { // note this may be called multiple times
if (status==0) if (status==0)
console.info( "Perl: Exit status",status,"(state",Perl.state,")"); console.debug( "Perl: Exit status",status,"(state",Perl.state,")");
else { else {
console.error("Perl: Exit status",status,"(state",Perl.state,")"); console.error("Perl: Exit status",status,"(state",Perl.state,")");
alert("Perl exited with exit status "+status+" in state "+Perl.state); alert("Perl exited with exit status "+status+" in state "+Perl.state);

Loading…
Cancel
Save