Fix logging stuff

This commit is contained in:
Julia Johannesen 2024-08-17 13:08:46 -04:00
parent 76bbc10aa1
commit 9c1c1e9f09
No known key found for this signature in database
GPG key ID: 4A1377AF3E7FBC46
2 changed files with 1 additions and 2 deletions

View file

@ -34,7 +34,6 @@ export class StreamingApiServerService {
#wss: WebSocket.WebSocketServer;
#connections = new Map<WebSocket.WebSocket, number>();
#cleanConnectionsIntervalId: NodeJS.Timeout | null = null;
#logger: Logger;
constructor(
@Inject(DI.redisForSub)

View file

@ -53,7 +53,7 @@ export default class Connection {
private notificationService: NotificationService,
private cacheService: CacheService,
private channelFollowingService: ChannelFollowingService,
private loggerService: LoggerService,
loggerService: LoggerService,
user: MiUser | null | undefined,
token: MiAccessToken | null | undefined,