Turn off debug logging.
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2052 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
@@ -42,12 +42,10 @@ import com.samskivert.util.Tuple;
|
|||||||
public class UserManager
|
public class UserManager
|
||||||
{
|
{
|
||||||
/** An instance of the insecure authenticator for general-purpose use. */
|
/** An instance of the insecure authenticator for general-purpose use. */
|
||||||
public static final Authenticator AUTH_INSECURE =
|
public static final Authenticator AUTH_INSECURE = new InsecureAuthenticator();
|
||||||
new InsecureAuthenticator();
|
|
||||||
|
|
||||||
/** An instance of the password authenticator for general-purpose use. */
|
/** An instance of the password authenticator for general-purpose use. */
|
||||||
public static final Authenticator AUTH_PASSWORD =
|
public static final Authenticator AUTH_PASSWORD = new PasswordAuthenticator();
|
||||||
new PasswordAuthenticator();
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A totally insecure authenticator that authenticates any user. <em>Note:</em> Applications
|
* A totally insecure authenticator that authenticates any user. <em>Note:</em> Applications
|
||||||
@@ -387,5 +385,5 @@ public class UserManager
|
|||||||
protected static final int NON_PERSIST_EXPIRE_DAYS = 1;
|
protected static final int NON_PERSIST_EXPIRE_DAYS = 1;
|
||||||
|
|
||||||
/** Change this to true and recompile to debug cookie handling. */
|
/** Change this to true and recompile to debug cookie handling. */
|
||||||
protected static final boolean USERMGR_DEBUG = true;
|
protected static final boolean USERMGR_DEBUG = false;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user