Skip to content

Commit

Permalink
update log level and message
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilianoSanchez committed Nov 3, 2023
1 parent dec471b commit 827b91e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/storages/inRedis/SplitsCacheInRedis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ export class SplitsCacheInRedis extends AbstractSplitsCacheAsync {
* @todo this is a no-op method to be implemented
*/
getNamesByFlagSets(): Promise<ISet<string>> {
this.log.warn(LOG_PREFIX + 'ByFlagSet/s evaluations are not supported in Redis storage yet.');
this.log.error(LOG_PREFIX + 'ByFlagSet/s evaluations are not supported with Redis storage yet.');
return Promise.reject();
}

Expand Down
2 changes: 1 addition & 1 deletion src/storages/pluggable/SplitsCachePluggable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ export class SplitsCachePluggable extends AbstractSplitsCacheAsync {
* @todo this is a no-op method to be implemented
*/
getNamesByFlagSets(): Promise<ISet<string>> {
this.log.warn(LOG_PREFIX + 'ByFlagSet/s evaluations are not supported in pluggable storage yet.');
this.log.error(LOG_PREFIX + 'ByFlagSet/s evaluations are not supported with pluggable storage yet.');
return Promise.reject();
}

Expand Down

0 comments on commit 827b91e

Please sign in to comment.