We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d62417 commit bbbbad7Copy full SHA for bbbbad7
packages/client-twitter/src/base.ts
@@ -231,7 +231,7 @@ export class ClientBase extends EventEmitter {
231
elizaLogger.debug("fetching home timeline");
232
const homeTimeline = await this.twitterClient.fetchHomeTimeline(count, []);
233
234
- //console.dir(homeTimeline, { depth: Infinity });
+ elizaLogger.debug(homeTimeline, { depth: Infinity });
235
const processedTimeline = homeTimeline
236
.filter((t) => t.__typename !== "TweetWithVisibilityResults") // what's this about?
237
.map((tweet) => {
0 commit comments