I have configured a AWS Glue Job in which I have enabled continuous-logging and then defined the continuous-logging in the job-parameters.
Parameters:
- --enable-continuous-cloudwatch-log - true
- --enable-continuous-log-filter - false
- --continuous-log-logStreamPrefix - test
- --continuous-log-logGroupName or --continuous-log-logGroup - custom_log_group
But still my Glue Job log group points to "/aws-glue/jobs" and the links under Cloudwatch logs

- 'All Logs' opens default log group - /aws-glue/jobs/logs-v2. Though the l,ink opens wrong location but its actually writing to my custom_log_group. But it only contains glue context logs. Not my java library logs which is being referenced in glue job.
- 'Output Logs' goes to - /aws-glue/jobs/output
- 'Error Logs' goes to - /aws-glue/jobs/error - This shows all my java library logs.
I want all these logs to go my custom_log_group. What am I missing here.
