Skip to content

Commit

Permalink
Merge pull request hashicorp#14916 from jtopjian/openstack-network-cr…
Browse files Browse the repository at this point in the history
…eate-logging

provider/openstack: Re-add missing create option logging
  • Loading branch information
jtopjian authored May 30, 2017
2 parents 1a5e627 + 19008e2 commit 334bfe8
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,10 @@ func resourceNetworkingNetworkV2Create(d *schema.ResourceData, meta interface{})
CreateOptsBuilder: createOpts,
Segments: segments,
}
log.Printf("[DEBUG] Create Options: %#v", providerCreateOpts)
n, err = networks.Create(networkingClient, providerCreateOpts).Extract()
} else {
log.Printf("[DEBUG] Create Options: %#v", createOpts)
n, err = networks.Create(networkingClient, createOpts).Extract()
}

Expand Down

0 comments on commit 334bfe8

Please sign in to comment.