Hello! ObjectDB logs these errors when I start the app and open the log in page. (see attachment)
dk.mandecentret.boundary.AuthB is a @javax.enterprise.context.RequestScoped and dk.mandecentret.boundary.UserSessionB is @javax.enterprise.context.SessionScoped. AuthB contains UserSessionB through @Inject. Both are not entities or anything related to ObjectDB. AuthB is used in a JSF page for login. UserSessionB contains @Inject UserC, which is @Stateless for dealing with CRUD operations on User (an ObjectDB Entity).
These errors appear when I just navigate to the page, so when AuthB is loaded, because is @RequestScoped.
I must mention that login works without problem. Creating and editing of User entities works also. This just appears in ObjectDB's logs and I was wondering why.