Console log is not displaying after using mocha multi

Hi
I am using mocha multi report for getting both XML and console report
but only XML report is generating
Below is my configuration:
mocha: {
reporterOptions: {
“codeceptjs-cli-reporter”: {
stdout: “./testresult/console_cli.log”,
options: {
verbose: false,
steps: true,
}
},
“mocha-junit-reporter”: {
stdout: “./testresult/console_mocha.log”,
options: {
mochaFile: “./testresult/result.xml”
},
attachments: true,
}
},
},

Package.json:
“devDependencies”: {
“codeceptjs”: “^2.5.0”,
“mocha”: “^7.1.1”,
“mocha-junit-reporter”: “^1.23.3”,
“mocha-multi”: “^1.1.3”,
“npm-run”: “^5.0.1”,
“puppeteer”: “^2.1.1”,
“tesseractocr”: “^1.2.1”,
“webdriverio”: “^5.21.0”,
“zip-local”: “^0.3.4”

Thanks
Sasmita