You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +00:00
Make some debug prints verbose-only, remove others
This commit is contained in:
@@ -107,16 +107,16 @@ void VisualServerWrapMT::init() {
|
||||
|
||||
if (create_thread) {
|
||||
|
||||
print_line("CREATING RENDER THREAD");
|
||||
print_verbose("VisualServerWrapMT: Creating render thread");
|
||||
OS::get_singleton()->release_rendering_thread();
|
||||
if (create_thread) {
|
||||
thread = Thread::create(_thread_callback, this);
|
||||
print_line("STARTING RENDER THREAD");
|
||||
print_verbose("VisualServerWrapMT: Starting render thread");
|
||||
}
|
||||
while (!draw_thread_up) {
|
||||
OS::get_singleton()->delay_usec(1000);
|
||||
}
|
||||
print_line("DONE RENDER THREAD");
|
||||
print_verbose("VisualServerWrapMT: Finished render thread");
|
||||
} else {
|
||||
|
||||
visual_server->init();
|
||||
|
||||
Reference in New Issue
Block a user