List & Logs
Prerequisites
This section assumes that CDK is installed and my-connector
project has been generated.
After you start your connectors, you can review the list of all connectors, and view their logs with these commands
$ cdk deploy list
NAME STATUS
my-my-connector-test-connector Running
$ cdk deploy log --name my-connector-test-connector
Starting my-connector source connector with CustomConfig { foo: "bar" }
By default connectors will use the info
logging level, you can change the
log level by using the deploy
command argument --log-level
.
cdk deploy start --config sample-config.yaml --log-level debug
Available values include:
error
warn
info
debug
trace