diff options
Diffstat (limited to 'modules/mono/csharp_script.cpp')
| -rw-r--r-- | modules/mono/csharp_script.cpp | 6 | 
1 files changed, 1 insertions, 5 deletions
| diff --git a/modules/mono/csharp_script.cpp b/modules/mono/csharp_script.cpp index cd1a8266ed..b8b77924f7 100644 --- a/modules/mono/csharp_script.cpp +++ b/modules/mono/csharp_script.cpp @@ -2118,11 +2118,7 @@ Error CSharpScript::reload(bool p_keep_state) {  		if (script_class) {  #ifdef DEBUG_ENABLED -			if (OS::get_singleton()->is_stdout_verbose()) { -				OS::get_singleton()->print(String("Found class " + script_class->get_namespace() + "." + -												  script_class->get_name() + " for script " + get_path() + "\n") -												   .utf8()); -			} +			print_verbose("Found class " + script_class->get_namespace() + "." + script_class->get_name() + " for script " + get_path());  #endif  			tool = script_class->has_attribute(CACHED_CLASS(ToolAttribute)); |