Skip to content

Commit

Permalink
test: change log level
Browse files Browse the repository at this point in the history
JulissaDantes committed May 22, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 0f94f2a commit 75d8a33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/core/src/store/feed-aggregation-store.ts
Original file line number Diff line number Diff line change
@@ -98,7 +98,7 @@ export class FeedAggregationStore extends ObjectStore<string, StreamID> {

async put(streamId: StreamID, key: string = this.#keyGenerator.next()): Promise<void> {
await this.save(key, streamId)
this.logger.verbose(`Inserting this streamId from LevelDB ${streamId} at ${Date.now()}`)
this.logger.warn(`Inserting this streamId from LevelDB ${streamId} at ${Date.now()}`)
this.onWrite.next()
}

@@ -149,7 +149,7 @@ class StreamIDFeedSource implements UnderlyingSource<AggregationStoreEntry> {
return this.pull(controller)
}
for (const entry of entries) {
this.logger.verbose(`Sending this streamId from LevelDB ${entry.value} at ${Date.now()}`)
this.logger.warn(`Sending this streamId from LevelDB ${entry.value} at ${Date.now()}`)
controller.enqueue({
resumeToken: entry.key,
streamID: entry.value,

0 comments on commit 75d8a33

Please sign in to comment.