Python: Limit BGL deprecation messages. #106032

Merged
1 changed files with 2 additions and 2 deletions

View File

@ -40,10 +40,10 @@ static CLG_LogRef LOG = {"bgl"};
static void report_deprecated_call(const char *function_name) static void report_deprecated_call(const char *function_name)
{ {
/* Only report first 100 deprecated calls. BGL is typically used inside an handler that is /* Only report first 10 deprecated calls. BGL is typically used inside an handler that is
* triggered at refresh. */ * triggered at refresh. */
static int times = 0; static int times = 0;
while (times >= 100) { while (times >= 10) {
return; return;
} }
char message[256]; char message[256];