Skip to content

Commit

Permalink
Remove verbose logging
Browse files Browse the repository at this point in the history
  • Loading branch information
dschmidt committed Jul 13, 2023
1 parent faf41bd commit 62b75b8
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion packages/@uppy/companion/src/companion.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ module.exports.app = (optionsArg = {}) => {
logger.setMaskables(getMaskableSecrets(options))

// create singleton redis client
console.log('redisOptions', options.redisOptions)
if (options.redisOptions) {
redis.client(options.redisOptions)
}
Expand Down
1 change: 0 additions & 1 deletion packages/@uppy/companion/src/server/redis.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ let redisClient
*/
function createClient (opts) {
if (!redisClient) {
console.log('NEW REDIS', opts)
redisClient = new Redis(opts)

redisClient.on('error', err => logger.error('redis error', err.toString()))
Expand Down

0 comments on commit 62b75b8

Please sign in to comment.