Skip to content

Commit ddae4cc

Browse files
Quita impresiones a consola innecesarias
1 parent 7d36844 commit ddae4cc

3 files changed

Lines changed: 0 additions & 3 deletions

File tree

api/submit.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ import (
1717
var m sync.Mutex
1818

1919
func (api *ApiContext) submitProgram(w http.ResponseWriter, r *http.Request) {
20-
fmt.Println("HOLA A TODOS")
2120
err := r.ParseMultipartForm(8 << 20)
2221
if err != nil {
2322
http.Error(w, "Los archivos deben ser, como máximo, de 8 MiB", http.StatusBadRequest)

security/hash.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ var Argon2Params *Params = &Params{
2424
}
2525

2626
func VerifyHash(password, storedHash, salt []byte, p *Params) (bool, error) {
27-
log.Println("HOLA")
2827
otherHash, err := HashPasswordWithSalt(string(password), salt, p)
2928
if err != nil {
3029
return false, err

store/sqlite.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,6 @@ func (s *SQLiteStore) GetProblemByIDs(ctx context.Context, contestID, problemID
218218
} else if err != nil {
219219
return nil, err
220220
}
221-
log.Println("HOLA")
222221

223222
err = s.DB.QueryRowContext(ctx, "SELECT t.expected_out, t.given_input from test_case t JOIN problem p ON p.problem_id = t.problem_id WHERE t.problem_id = ? ORDER BY t.num_test_case ASC LIMIT 1", p.ProblemID).Scan(&p.SampleOut, &p.SampleInput)
224223
if err == sql.ErrNoRows {

0 commit comments

Comments
 (0)