mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-04-14 11:36:45 +00:00
fix(script): log, not warn, so all output goes to both stdout and tee
This commit is contained in:
parent
e7969987ec
commit
28ed9d8bcc
1 changed files with 1 additions and 1 deletions
|
|
@ -65,7 +65,7 @@ async function _processEmailAddress (email) {
|
|||
}).exec();
|
||||
|
||||
if (users.length < 1) {
|
||||
console.warn(`No users found with email address ${email}`);
|
||||
console.log(`No users found with email address ${email}`);
|
||||
} else {
|
||||
for (const user of users) {
|
||||
await _deleteAmplitudeData(user._id, email); // eslint-disable-line no-await-in-loop
|
||||
|
|
|
|||
Loading…
Reference in a new issue