mirror of
https://github.com/mattermost/focalboard.git
synced 2024-12-24 13:43:12 +02:00
removed a debug log
This commit is contained in:
parent
733dca08b6
commit
eb50a5ae95
@ -63,7 +63,7 @@ func (a *App) createBoardsCategory(userID, teamID string, existingCategoryBoards
|
||||
// belong to any category, into this category.
|
||||
boardMembers, err := a.GetMembersForUser(userID)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
return nil, fmt.Errorf("createBoardsCategory error fetching user's board memberships: %w", err)
|
||||
}
|
||||
|
||||
createdCategoryBoards := &model.CategoryBoards{
|
||||
|
@ -264,9 +264,6 @@ func (s *SQLStore) getBoardsForUserAndTeam(db sq.BaseRunner, userID, teamID stri
|
||||
})
|
||||
}
|
||||
|
||||
q, p, _ := query.ToSql()
|
||||
s.logger.Error(fmt.Sprintf("%s %v", q, p))
|
||||
|
||||
rows, err := query.Query()
|
||||
if err != nil {
|
||||
s.logger.Error(`getBoardsForUserAndTeam ERROR`, mlog.Err(err))
|
||||
|
Loading…
Reference in New Issue
Block a user