移除日志多余换行

This commit is contained in:
lyswhut 2021-09-10 14:18:07 +08:00
parent bb27e9cddd
commit 9eb9947298
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "lx-music-mobile", "name": "lx-music-mobile",
"version": "0.8.1-beta", "version": "0.8.1-beta2",
"versionCode": 27, "versionCode": 27,
"scripts": { "scripts": {
"ar": "react-native run-android", "ar": "react-native run-android",

View File

@ -7,7 +7,7 @@ const logTools = {
tempLog: [], tempLog: [],
writeLog(msg) { writeLog(msg) {
console.log(msg) console.log(msg)
appendFile(logPath, '\n\n' + msg) appendFile(logPath, '\n' + msg)
}, },
async initLogFile() { async initLogFile() {
try { try {