diff --git a/backend/migrate.js b/backend/migrate.js index 78142434b..03cdf9b56 100644 --- a/backend/migrate.js +++ b/backend/migrate.js @@ -217,13 +217,13 @@ async function migrateUsers() { ); fs.appendFileSync( "log_success.txt", - `${uid} ${userData.name} ${total} \n`, + `${uid}\t\t${userData.name}\t\t${total}\n`, "utf8" ); } catch (err) { console.log(`${uid} failed`); console.log(err); - fs.appendFileSync("log_failed.txt", `${uid} ${err.message} \n`, "utf8"); + fs.appendFileSync("log_failed.txt", `${uid}\t\t${err.message}\n`, "utf8"); } fs.writeFileSync("lastId.txt", uid, "utf8"); let userend = performance.now();