Skip to content

Commit

Permalink
Remove debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
HitomaruKonpaku committed Dec 1, 2024
1 parent e8b2542 commit 43a9334
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/modules/TwitCastingCrawler.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* eslint-disable class-methods-use-this */

import axios from 'axios'
import * as cheerio from 'cheerio'
import EventEmitter from 'events'
Expand Down Expand Up @@ -114,7 +116,7 @@ export class TwitCastingCrawler extends EventEmitter {

private async getUserStream(id: string) {
const url = `https://twitcasting.tv/streamserver.php?target=${id}&mode=client`
this.logger.debug(`--> getUserStream: ${id}`)
// this.logger.debug(`--> getUserStream: ${id}`)
const { data } = await axios.get(url)
// this.logger.debug(`<-- getUserStream: ${id}`)
return data
Expand Down

0 comments on commit 43a9334

Please sign in to comment.