@threadbase-sh/streamer 1.70.4 → 1.70.5
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/dist/cli.cjs +7 -1
- package/dist/cli.cjs.map +1 -1
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -161018,6 +161018,12 @@ async function runInstall(opts) {
|
|
|
161018
161018
|
return installed;
|
|
161019
161019
|
}
|
|
161020
161020
|
|
|
161021
|
+
// cli/boot-log.ts
|
|
161022
|
+
function logApiKeyLine(log15, apiKey) {
|
|
161023
|
+
const apiKeyMasked = `${apiKey.slice(0, 6)}\u2026`;
|
|
161024
|
+
log15.info(`API key: ${apiKeyMasked}`, { apiKeyMasked });
|
|
161025
|
+
}
|
|
161026
|
+
|
|
161021
161027
|
// cli/pair-banner.ts
|
|
161022
161028
|
var import_qrcode_terminal = __toESM(require_main2(), 1);
|
|
161023
161029
|
init_logger();
|
|
@@ -161656,7 +161662,7 @@ program2.command("serve").description("Start the streamer server").option("-p, -
|
|
|
161656
161662
|
log14.info(`WebSocket at ws://localhost:${resolvedPort}/ws`, {
|
|
161657
161663
|
wsUrl: `ws://localhost:${resolvedPort}/ws`
|
|
161658
161664
|
});
|
|
161659
|
-
log14
|
|
161665
|
+
logApiKeyLine(log14, apiKey);
|
|
161660
161666
|
try {
|
|
161661
161667
|
await printServerBanner({
|
|
161662
161668
|
port: resolvedPort,
|