Skip to content

Commit

Permalink
chore: log resolved property values (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshdk authored Jun 30, 2022
1 parent 284a4e4 commit 2bfa316
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,6 @@ func mainCmd() error {
return err
}

// For now, just log the plugin configuration.
log.Printf("plugin config: %+v", cfg)

// Resolve all property values and build a complete map of property names
// to their respective values.
properties := make(map[string]string)
Expand All @@ -64,8 +61,10 @@ func mainCmd() error {
properties[property.Name] = value
}

// For now, just log the property values.
log.Printf("properties: %+v", properties)
// Log the resolved values for each property.
for key, value := range properties {
log.Printf("property %q resolved to %q", key, value)
}

// Read resources from the input stream, transform them, and write them
// back to the output stream.
Expand Down

0 comments on commit 2bfa316

Please sign in to comment.