Skip to content

Commit

Permalink
rm log
Browse files Browse the repository at this point in the history
  • Loading branch information
zizdlp committed Aug 24, 2024
1 parent da27d7d commit aee27b9
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: BUILD_MAIN
on:
push:
branches:
- feature/bugfix_repo
- main
jobs:
build:
runs-on: ubuntu-latest
Expand Down
2 changes: 0 additions & 2 deletions zbook_backend/gapi/reporelation_query_user_by_repo.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package gapi

import (
"context"
"fmt"

"github.com/rs/zerolog/log"
db "github.com/zizdlp/zbook/db/sqlc"
Expand Down Expand Up @@ -68,7 +67,6 @@ func validateQueryUserByRepoRequest(req *rpcs.QueryUserByRepoRequest) (violation
func convertQueryUserByRepo(users []db.QueryUserByRepoRow) []*models.ListUserRepoVisiblityInfo {
var ret_users []*models.ListUserRepoVisiblityInfo
for i := 0; i < len(users); i++ {
fmt.Println("users:", users)
ret_users = append(ret_users,
&models.ListUserRepoVisiblityInfo{
Username: users[i].Username,
Expand Down
2 changes: 1 addition & 1 deletion zbook_backend/statik/statik.go

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ export default function ListQueryElements({
page_size: 10,
},
});
console.log("data QUERY_USER_BY_REPO is:", data);
if (data.error) {
throw new FetchError(data.message, data.status);
}
Expand Down

0 comments on commit aee27b9

Please sign in to comment.