Skip to content

Commit 111ad13

Browse files
committed
refactor: simplify startup configuration log labels
Remove redundant prefixes from configuration log output: - 'Collection Contract' -> 'Contract' - 'Collection Slug' -> 'Slug' - 'Network Chain' -> 'Chain' This makes the startup logs more concise while maintaining clarity.
1 parent ea2027f commit 111ad13

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,11 +110,11 @@ const logStartupConfiguration = async () => {
110110
logger.info("");
111111
logger.info("┌─ 📋 CONFIGURATION");
112112
logger.info("│");
113-
logger.info(`│ 📦 Collection Contract: ${fullTokenAddr}`);
113+
logger.info(`│ 📦 Contract: ${fullTokenAddr}`);
114114
if (collectionSlug) {
115-
logger.info(`│ 🏷️ Collection Slug: ${collectionSlug}`);
115+
logger.info(`│ 🏷️ Slug: ${collectionSlug}`);
116116
}
117-
logger.info(`│ ⛓️ Network Chain: ${chain}`);
117+
logger.info(`│ ⛓️ Chain: ${chain}`);
118118
logger.info(`│ ⏱️ Poll Interval: ${botInterval}s`);
119119
if (eventTimestampInfo) {
120120
logger.info(`│ 🕐 Event Timestamp: ${eventTimestampInfo.timestamp}`);

0 commit comments

Comments
 (0)