Skip to content

Commit

Permalink
Remove log print
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasmoreau committed Apr 15, 2015
1 parent 6c0f9b5 commit 54cd729
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class PersistentQueryLog {

@SuppressWarnings("unchecked")
public List<Query> getStoredQueries(){
log.info("Reading saved queries");
//log.info("Reading saved queries");

List<Query> queries = null;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,9 @@ public class UserInfo {
@In private Identity identity;

public User getUser(){
if (identity!=null){
System.out.println("identity try login: "+identity.tryLogin());

}
/*if (identity!=null){
System.out.println("identity try login: "+identity.tryLogin());
}*/

String user = null;
if (identity!=null && identity.isLoggedIn() && credentials!=null)
Expand Down

0 comments on commit 54cd729

Please sign in to comment.