+ fix csv parser : ',' character are not removed anymore in quoted string correspondi...
[lgpl/argeo-commons.git] / server / runtime / org.argeo.server.jcr / src / main / java / org / argeo / jcr / JcrUtils.java
index b03be7396bdce3cd4b17733bd73058d5692d60d7..19a3f7703b8677b3584324d26e3cec5a28940745 100644 (file)
@@ -858,7 +858,8 @@ public class JcrUtils implements ArgeoJcrConstants {
                                } catch (Exception e) {
                                        // we use this workaround to be sure to get the stack trace
                                        // to identify the sink of the bug.
-                                       log.warn("trying to create an already existing userHome. Stack trace : ");
+                                       log.warn("trying to create an already existing userHome at path:"
+                                                       + homePath + ". Stack trace : ");
                                        e.printStackTrace();
                                }
                        }
@@ -866,8 +867,8 @@ public class JcrUtils implements ArgeoJcrConstants {
                        Node userHome = JcrUtils.mkdirs(session, homePath);
                        Node userProfile;
                        if (userHome.hasNode(ArgeoNames.ARGEO_PROFILE)) {
-                               log.warn("User profile node already exists. We do not add a new one");
-
+                               log.warn("userProfile node already exists for userHome path: "
+                                               + homePath + ". We do not add a new one");
                        } else {
                                userProfile = userHome.addNode(ArgeoNames.ARGEO_PROFILE);
                                userProfile.addMixin(ArgeoTypes.ARGEO_USER_PROFILE);