Skip to content

Commit f8a89e2

Browse files
committed
"Failed to parse machine config" is fine, sometimes a config is null or undefined
1 parent 2d36180 commit f8a89e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal-packages/run-engine/src/engine/machinePresets.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export function getMachinePreset({
2626
const parsedConfig = MachineConfig.safeParse(config);
2727

2828
if (!parsedConfig.success) {
29-
logger.error("Failed to parse machine config", { config });
29+
logger.info("Failed to parse machine config", { config });
3030

3131
return machinePresetFromName(machines, "small-1x");
3232
}

0 commit comments

Comments
 (0)