remove unwanted log level set to debug in rfx

I saw on debian packages (that have -DWITH_DEBUG_ALL=ON) remotefx logs always to
debug without respect log-level and log-filters settings making diffult
debugging of issue on other parts.
After a search I found this that set loglevel to debug that akallabeth confirmed
is unwanted, this patch remove it.

Closes #6606
This commit is contained in:
Fabio Fantoni 2020-11-28 13:50:42 +01:00
parent 2b676bf1e7
commit f3e5ebe315

View File

@ -220,9 +220,6 @@ RFX_CONTEXT* rfx_context_new(BOOL encoder)
priv->log = WLog_Get("com.freerdp.codec.rfx");
WLog_OpenAppender(priv->log);
#ifdef WITH_DEBUG_RFX
WLog_SetLogLevel(priv->log, WLOG_DEBUG);
#endif
priv->TilePool = ObjectPool_New(TRUE);
if (!priv->TilePool)