On the fly configuration using winston logging?

Is there any way to change the configuration of logs in winston without restarting node process? In log4js configuration can be loaded in this way

cat_log.configure("./smp_log4js.json"); cat_log.getLogger("Products", {reloadSecs: 10}); where Products is my category. Reload 10 secs loads config json file. Is there something similar can be done in winston?

Thanks