Remove some trace log happening too often (#606)

This commit is contained in:
Julian Murgia
2022-07-12 15:11:07 +02:00
committed by GitHub
parent d7b8c893af
commit 23bec3dfe8

View File

@@ -237,11 +237,6 @@ func has(global_id: String, room: ESCRoom = null) -> bool:
var room_key: ESCRoomObjectsKey
if room == null:
escoria.logger.trace(
self,
"No room specified. Defaulting to current room."
)
room_key = current_room_key
else:
room_key = ESCRoomObjectsKey.new()
@@ -276,11 +271,6 @@ func get_object(global_id: String, room: ESCRoom = null) -> ESCObject:
var room_key: ESCRoomObjectsKey
if room == null:
escoria.logger.trace(
self,
"No room specified. Defaulting to current room."
)
room_key = current_room_key
else:
room_key = ESCRoomObjectsKey.new()