Skip to content

Commit

Permalink
fix: remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
TBonnin committed Feb 4, 2025
1 parent c9c6db2 commit 938c81d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/fleet/lib/models/deployments.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ export async function create(db: knex.Knex, image: string): Promise<Result<Deplo
return Ok(DBDeployment.to(inserted));
});
} catch (err) {
console.log(err);
return Err(new FleetError(`deployment_creation_failed`, { cause: err, context: { image } }));
}
}
Expand Down

0 comments on commit 938c81d

Please sign in to comment.