If you create a new project using the Go template, no logging will be received unless the project is compiled with the logging tag.
This can be done by changing the makebuild file to include the tag, or running make with the TAGS environment variable defined:
How can this be made more obvious?
Suggestions:
- add a comment in the generated
makebuild file to note the values accepted by TAGS and the effect
- add a comment in the generated
resource.go describing how logging can be enabled
- add documentation on the README
I found out the way to enable logging via a hint in aws-cloudformation/cloudformation-cli#391; this could be made more discoverable for others.
If you create a new project using the Go template, no logging will be received unless the project is compiled with the
loggingtag.This can be done by changing the
makebuildfile to include the tag, or running make with theTAGSenvironment variable defined:How can this be made more obvious?
Suggestions:
makebuildfile to note the values accepted byTAGSand the effectresource.godescribing how logging can be enabledI found out the way to enable logging via a hint in aws-cloudformation/cloudformation-cli#391; this could be made more discoverable for others.