As title describes.
My sites have been moved to a newer environment, and some non-crititcal errors has come up. I want to suppress all the warnings on the websites, but still want them to be logged to the standard error_log, so i can fix the errors without my sites looking non-functional.
Is there some easy way to do that?
display_errorsin php.ini. Or in your codeini_set('display_errors', 0);Best to fix the errors though.