auth0-extensions / auth0-extension-realtime-logs

Access real-time webtask logs
MIT License
11 stars 13 forks source link

Logging string which contains "npm" doesn't work in console.log() #52

Open Malve22 opened 9 months ago

Malve22 commented 9 months ago

Logging string which contains "npm" doesn't work in console.log(). Its easy to reproduce I have added simple rule.

function (user, context, callback) {
  console.log('This is standard string.' );
    console.log('This is string which contains npm.' );
  return callback(null, user, context);
}