thswlsqls opened a new issue, #8553: URL: https://github.com/apache/paimon/issues/8553
**Search before asking** - [x] I searched in the [issues](https://github.com/apache/paimon/issues) and found nothing similar. **Paimon version** master @ a8e4069b9 / 2.0-SNAPSHOT **Compute Engine** Engine-agnostic (COSN FileIO) **Minimal reproduce step** Configure any COSN-backed table so `COSNFileIO.configure()` runs (`paimon-filesystems/paimon-cosn-impl/.../cosn/COSNFileIO.java` line 83). For every `fs.cosn.*` option it logs the key AND value with `LOG.warn`. All five sibling filesystem impls (OSSFileIO line 145, OBSFileIO line 99, S3FileIO line 98, AzureFileIO, JindoFileIO) log the identical "Adding config entry" statement at `LOG.debug`. **What doesn't meet your expectations?** Expected: routine config copying is logged at debug, like every sibling impl. Actual: it is logged at warn, so every FileIO init spams warnings, and the value of `fs.cosn.userinfo.secretKey` is emitted at the default (WARN) level. **Anything else?** The loop is filtered by `CONFIG_PREFIXES = {"fs.cosn."}`, so `fs.cosn.userinfo.secretId`/`secretKey` match. Fix: align the level to debug (siblings also log the value, only at debug). **Are you willing to submit a PR?** - [x] I'm willing to submit a PR! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
