Hi, I tried push_error and push_warning and I did't expect they print something else in adding.

	push_error("error pushed")
	push_warning("warning pushed")

ERROR: call: error pushed
   At: modules/gdscript/gdscript_functions.cpp:803.
WARNING: call: warning pushed
   At: modules/gdscript/gdscript_functions.cpp:817.

How I can get rid to these rows that are useless to me? At: modules/gdscript/gdscript_functions.cpp:803. At: modules/gdscript/gdscript_functions.cpp:817.


thanks

a month later

One partly solution is to use printerr('your message'), but that doesn't seem to be available for yellow warnings.

I think those lines are only there for debug builds? So in your release build they shouldn't show up afaik.

3 years later