Is there ant way I can silence a warning message caused by a module I include?
I like the module, but every time I call their function, the console outputs:
"Utf8String" type is deprecated, use "CString" instead
I am making a console app, so would prefer to surpress this message.
In this case, there was a module required by a module I required, which had custom code which both used
Utf8Stringand triggered an error for it.And wrote about it in the history
So as a temporary solution, I might comment out the error message, or as a more permanent solution, choose a different module.