Merge pull request #14916 from jtopjian/openstack-network-create-logging

provider/openstack: Re-add missing create option logging
This commit is contained in:
Joe Topjian 2017-05-29 21:47:49 -06:00 committed by GitHub
commit 334bfe8eb9
1 changed files with 2 additions and 0 deletions

View File

@ -133,8 +133,10 @@ func resourceNetworkingNetworkV2Create(d *schema.ResourceData, meta interface{})
CreateOptsBuilder: createOpts, CreateOptsBuilder: createOpts,
Segments: segments, Segments: segments,
} }
log.Printf("[DEBUG] Create Options: %#v", providerCreateOpts)
n, err = networks.Create(networkingClient, providerCreateOpts).Extract() n, err = networks.Create(networkingClient, providerCreateOpts).Extract()
} else { } else {
log.Printf("[DEBUG] Create Options: %#v", createOpts)
n, err = networks.Create(networkingClient, createOpts).Extract() n, err = networks.Create(networkingClient, createOpts).Extract()
} }