mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-02-11 06:52:59 +08:00
Move cache hit to trace
This commit is contained in:
parent
66b0e6f3c6
commit
9c77ddc42e
@ -437,7 +437,7 @@ public class SceneScriptManager {
|
||||
public List<Grid> getGroupGrids() {
|
||||
int sceneId = scene.getId();
|
||||
if (groupGridsCache.containsKey(sceneId) && groupGridsCache.get(sceneId) != null) {
|
||||
Grasscutter.getLogger().debug("Hit cache for scene {}", sceneId);
|
||||
Grasscutter.getLogger().trace("Hit cache for scene {}", sceneId);
|
||||
return groupGridsCache.get(sceneId);
|
||||
} else {
|
||||
var path = FileUtils.getCachePath("scene" + sceneId + "_grid.json");
|
||||
|
Loading…
Reference in New Issue
Block a user