Getting login error when upgrade version to 7.19.6

I am getting below error when I upgrade camunda ee version to 7.19.6 from 7.17.x, I executed upgraded sqls and jars in my springboot application. Can someone help to resolve the issue?

org.camunda.bpm.webapp.impl.Webapp Logger.logTrace(java.lang.String, java.lang.String, java.lang.Object)

Hello @animike ,

this does not look like an actual error.

Can you increase the log level and check for any stack traces?

Jonathan

@jonathan.lukas
Even I am also getting same error and not more log on console. I have posted on below link,

I got the issue and could able to solve it.
Issue -
BaseLogger.class from version 1.9.0 don’t have logTrace method.
this class downloaded one of below two dependencies -

  • camunda-connect-core
  • camunda-connect-connectors-all

Solution -

  • Make sure below dependency and version present, baselogger should below to this library with version 1.13
  • Exclude camunda-commons-logging from above 2 dependencies, if present in tree.

This should work !!!

I’m having the same error, but couldn’t quite understand what you were saying. Would you please post examples of the dependency entries?
Thanks!

Please check maven dependency tree.
Check if there are more than 1 dependency of camunda-connect-core, if yes, then keep the version 1.13, and exclude other version from the parent dependency.

BaseLogger from versoin 1.13 have logTrace(), other version I did not see.