provider/openstack: Re-add missing create option logging

This commit is contained in:
Joe Topjian 2017-05-29 21:34:25 -06:00
parent 1a5e627b35
commit 19008e28af
1 changed files with 2 additions and 0 deletions

View File

@ -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()
}