Skip to content

Commit

Permalink
Remove debug logging for now
Browse files Browse the repository at this point in the history
  • Loading branch information
jmgasper committed Jan 10, 2024
1 parent 29be1f9 commit 0f7e5d6
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/helpers/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
*/
import _ from 'lodash'
import moment from 'moment'
import { logger } from '../../logger/logger'

/**
* Finds the difference between two objects.
Expand Down Expand Up @@ -57,7 +56,6 @@ export const compareEmail = (email1, email2, options = { UNIQUE_GMAIL_VALIDATION
*/
export const compareHandles = (handle1, handle2) => {
if (handle1 === undefined || handle2 === undefined || handle1 === null || handle2 === null ) {
logger.info(`Comparing: ${handle1} to ${handle2}`)
return false
}
let h1 = handle1
Expand Down

0 comments on commit 0f7e5d6

Please sign in to comment.