Merge pull request #3361 from bluewave-labs/fix/logs

replace log statement
This commit is contained in:
Alexander Holliday
2026-03-03 09:20:22 -08:00
committed by GitHub
@@ -282,7 +282,11 @@ class SuperSimpleQueue implements ISuperSimpleQueue {
};
obliterate = async () => {
console.log("obliterate not implemented");
this.logger.warn({
message: "obliterate method not implemented",
service: SERVICE_NAME,
method: "obliterate",
});
};
}