Browse Source

Update example in RedisHandler (#1894)

javaDeveloperKid 1 year ago
parent
commit
f836e01659
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Monolog/Handler/RedisHandler.php

+ 1 - 1
src/Monolog/Handler/RedisHandler.php

@@ -24,7 +24,7 @@ use Redis;
  * usage example:
  *
  *   $log = new Logger('application');
- *   $redis = new RedisHandler(new Predis\Client("tcp://localhost:6379"), "logs", "prod");
+ *   $redis = new RedisHandler(new Predis\Client("tcp://localhost:6379"), "logs");
  *   $log->pushHandler($redis);
  *
  * @author Thomas Tourlourat <thomas@tourlourat.com>