analogger 2.0.1 → 2.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/ana-logger.cjs +2 -1
package/package.json
CHANGED
package/src/ana-logger.cjs
CHANGED
|
@@ -160,6 +160,7 @@ const symbolNames = {
|
|
|
160
160
|
relaxed : "☺",
|
|
161
161
|
rewind : "⏪",
|
|
162
162
|
scissors : "✂",
|
|
163
|
+
settings : "⚙️",
|
|
163
164
|
shield : "🛡️",
|
|
164
165
|
screen_with_curl : "📜",
|
|
165
166
|
snowman : "☃",
|
|
@@ -394,7 +395,7 @@ function createTarGzArchiveSync(inputFile, archivePath, compressionLevel = 1) {
|
|
|
394
395
|
fs.rmSync(tempDir, { recursive: true, force: true });
|
|
395
396
|
}
|
|
396
397
|
} catch (err) {
|
|
397
|
-
console.error(`ARCHIVE_FAILURE: ${
|
|
398
|
+
console.error(`ARCHIVE_FAILURE: ${err.message}`);
|
|
398
399
|
}
|
|
399
400
|
}
|
|
400
401
|
|