A user (David T) reported an error on their Origin
time="2025-10-16T04:48:27Z" level=error msg="SELECT * FROM `service_names` WHERE name = \"[redacted]\" AND `service_names`.`deleted_at` IS NULL ORDER BY `service_names`.`id` LIMIT 1" component=gorm duration="642.865µs" error="record not found" rows=0
After some investigation, I found that this 'error' is actually just a default log emitted by GORM. The 'record not found' message is expected behavior during an Origin/Cache initial startup and is already handled by the code. We should suppress this log to avoid misleading users into thinking it is a real error.
A user (David T) reported an error on their Origin
After some investigation, I found that this 'error' is actually just a default log emitted by GORM. The 'record not found' message is expected behavior during an Origin/Cache initial startup and is already handled by the code. We should suppress this log to avoid misleading users into thinking it is a real error.