View logs in Kubernetes environment
A log serves as the record that captures every minute details of what your application did. Each entry in a log contains important information such as time, contextual messages, and log levels. All the log messages are captured in the sysout.
Refer to CRDP Logging for details on logging.
To fetch CRDP specific logs in Kubernetes (with and without helm) deployment from sysout, you can use the following command:
kubectl logs <pod_name> -c <crdp_container_name>
To fetch CRDP specific logs in standalone deployment, use the following command:
docker logs <container_id>