Verifying nudr-bulk-import Tool Logs

To view the nudr-bulk-import tool logs, execute the following command:

kubectl logs <nudr-bulk-import pod> -n <ocudr-namespace>

To change the logging level of the nudr-bulk-import tool (using template yaml file - recommended):
  1. Open the template yaml file used during nudr-bulk-import tool. Refer unresolvable-reference.html#GUID-E5DD0E38-06CD-43F9-8519-36C15A671EBC for more details.
  2. Change the value of LOGGING_LEVEL_ROOT attribute available under "env" to any one of the following levels:
    • DEBUG
    • INFO
    • WARN
    • ERROR
    An extract from bulk_import_tool.yaml is given below:
    apiVersion: batch/v1  
    ...
    ...
    
    containers:
    
    -env:
    
    ...
    
    - name: LOGGING_LEVEL_ROOT
    
    value: "INFO"