0

Sorry for a silly question, I want to change logfile and loglevel in redis without doing restart, if there is a way to do that?

com
  • 261
  • 2
  • 15

1 Answers1

2

You can use the CONFIG SET command to set the loglevel, setting the log file isn't supported.

See http://redis.io/commands/config-set for details

Rwky
  • 774
  • 1
  • 8
  • 17