log

general log function

Arguments

  • elem1 : element 1 to draw, can be any tipe
  • elem2345 : you can add up to 15 arguments

Returns : void

Source code

  1. ///log(msg1, msg2, ...)
  2. var str = "";
  3. for(var i = 0; i< argument_count; i++)
  4.     str += string(argument[i]) + "  ";
  5.  
  6. show_debug_message(str);