streamify-audio 2.1.0 → 2.1.1

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "streamify-audio",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "description": "Dual-mode audio library: HTTP streaming proxy + Discord player (Lavalink alternative). Supports YouTube, Spotify, SoundCloud with audio filters.",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -147,7 +147,7 @@ class Manager extends EventEmitter {
147
147
  };
148
148
 
149
149
  await this.persistence.save(guildId, sessionData);
150
- log.debug('MANAGER', `Session saved for guild ${guildId}`);
150
+ log.info('PERSISTENCE', `Session saved: ${guildId} (track: ${sessionData.currentTrack?.title || 'none'}, queue: ${sessionData.queue?.length || 0})`);
151
151
  return true;
152
152
  }
153
153