Data Discovery is currently in Private Preview and is not available for General Availability (GA). It should not be used in production environments, as features and functionality may change before the final GA release.
Viewing the Logs
Viewing Logs
The application logs can be viewed using the following commands:
docker logs -f classification_service
docker logs -f roberta_provider
docker logs -f presidio_provider
Setting the Log Level
The log level can be updated in the .env file.
To set the log level, run the following steps.
Navigate to the
docker_composedirectory.Edit the
.envfile.Uncomment the required logging configuration and set the logging level to one of the following:
- INFO
- DEBUG
- ERROR
- WARNING
For example, to change the log level for PRESIDIO_LOGGING_CONFIG, configure the parameter as follows.
PRESIDIO_LOGGING_CONFIG={"root":{"level":"ERROR"}}
Save the changes.
Run the
compose_down.shfile to undeploy the application.Run the
compose_up.shfile to redeploy the application.