Skip to content

Commit

Permalink
Merge pull request #177 from kate-goldenring/specify-resource-creation
Browse files Browse the repository at this point in the history
fix(links): log resource creation at creation time
  • Loading branch information
kate-goldenring committed Jan 30, 2024
2 parents 80d1c0c + 9258930 commit 0c28ed8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/deploy/resource.rs
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,6 @@ pub(super) async fn create_resources_for_new_app(
let label_types = db_label_types
.chain(kv_label_types)
.collect::<Vec<(_, _)>>();
println!("Creating resources {label_types:?}");
for (label, resource_type) in label_types {
let resource = match get_resource_selection_for_new_app(
app_name,
Expand All @@ -279,6 +278,7 @@ pub(super) async fn create_resources_for_new_app(
{
ResourceSelection::Existing(r) => r,
ResourceSelection::New(r) => {
println!("Creating {resource_type} named '{r}'");
match resource_type {
ResourceType::Database => {
client
Expand Down

0 comments on commit 0c28ed8

Please sign in to comment.