Log messages are now level DEBUG by default

Author Mitja Felicijan <mitja.felicijan@gmail.com> 2025-08-11 22:46:13 +0200
Committer Mitja Felicijan <mitja.felicijan@gmail.com> 2025-08-11 22:46:13 +0200
Commit a415a2c4848e9fba494b070d223d8fe48e007741 (patch)
-rw-r--r-- main.c 4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.c b/main.c
...
477
	}
477
	}
478
	ctx.images.count++;
478
	ctx.images.count++;
479
  
479
  
480
	TraceLog(LOG_WARNING, "[add_img] %s (%d)", img->uid, strlen(img->uid));
480
	TraceLog(LOG_DEBUG, "[add_img] %s (%d)", img->uid, strlen(img->uid));
481
  
481
  
482
	lua_pushstring(L, img->uid);
482
	lua_pushstring(L, img->uid);
483
	return 1;
483
	return 1;
...
522
	}
522
	}
523
	ctx.sounds.count++;
523
	ctx.sounds.count++;
524
  
524
  
525
	TraceLog(LOG_WARNING, "[add_snd] %s (%d)", snd->uid, strlen(snd->uid));
525
	TraceLog(LOG_DEBUG, "[add_snd] %s (%d)", snd->uid, strlen(snd->uid));
526
  
526
  
527
	lua_pushstring(L, snd->uid);
527
	lua_pushstring(L, snd->uid);
528
	return 1;
528
	return 1;
...