- 
          
- 
                Notifications
    You must be signed in to change notification settings 
- Fork 19
show_debug_message_ext
        CryoEagle edited this page Jan 6, 2019 
        ·
        1 revision
      
    Show debug message in debug output
show_debug_message(str, category)| Argument | Description | 
|---|---|
| stringstr | message to debug output | 
| stringcategory | message to debug output | 
Returns: string
This function will show message in debug output when is called, it's working like show_debug_message() but in this function is one more option and that is category for better organization of your project.
show_debug_message_ext("text", "oMyPlayer");The above code will show message in debug output „oMyPlayer: text“.
Back to Debug