Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjmisinco2012-03-22 21:36:57 +0000
committerRoberto E. Escobar2012-03-22 21:36:57 +0000
commit99638b2d515b95758ee25014722b4c3205fba553 (patch)
treea036cead625be1ba05f87bb3b4ce6ce20bbdd653 /plugins
parent55c41c50ea5e21b363bde06dc2f3779b456123b6 (diff)
downloadorg.eclipse.osee-99638b2d515b95758ee25014722b4c3205fba553.tar.gz
org.eclipse.osee-99638b2d515b95758ee25014722b4c3205fba553.tar.xz
org.eclipse.osee-99638b2d515b95758ee25014722b4c3205fba553.zip
refinement: Add logging for unknown users
Diffstat (limited to 'plugins')
-rw-r--r--plugins/org.eclipse.osee.framework.core.server/src/org/eclipse/osee/framework/core/server/AbstractAuthenticationProvider.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.framework.core.server/src/org/eclipse/osee/framework/core/server/AbstractAuthenticationProvider.java b/plugins/org.eclipse.osee.framework.core.server/src/org/eclipse/osee/framework/core/server/AbstractAuthenticationProvider.java
index 5962f5804f9..0cf82a49070 100644
--- a/plugins/org.eclipse.osee.framework.core.server/src/org/eclipse/osee/framework/core/server/AbstractAuthenticationProvider.java
+++ b/plugins/org.eclipse.osee.framework.core.server/src/org/eclipse/osee/framework/core/server/AbstractAuthenticationProvider.java
@@ -77,6 +77,9 @@ public abstract class AbstractAuthenticationProvider implements IAuthenticationP
TokenFactory.createUserToken(GUID.create(), "-", "-", chStmt.getString("user_id"), true, false, false);
}
}
+ if (toReturn == null) {
+ getLogger().info("Unable to find userId:[%s] on [%s]", userId, branch);
+ }
} catch (OseeCoreException ex) {
getLogger().error(ex, "Unable to find userId [%s] in OSEE database.", userId);
} finally {

Back to the top