We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
get_data()
1 parent 1422a20 commit 91f751aCopy full SHA for 91f751a
addons/mod_loader/internal/cache.gd
@@ -31,7 +31,7 @@ static func add_data(key: String, data: Dictionary) -> Dictionary:
31
# Get data from a specific key
32
static func get_data(key: String) -> Dictionary:
33
if not ModLoaderStore.cache.has(key):
34
- ModLoaderLog.error("key: \"%s\" not found in \"ModLoaderStore.cache\"" % key, LOG_NAME)
+ ModLoaderLog.info("key: \"%s\" not found in \"ModLoaderStore.cache\"" % key, LOG_NAME)
35
return {}
36
37
return ModLoaderStore.cache[key]
0 commit comments