summaryrefslogtreecommitdiffstats
path: root/js/dav/lib/debug.js
blob: afbd6ee6c88a97a03032a30f6e12771de66f58dd (plain)
1
2
3
4
5
6
7
export default function debug(topic) {
  return function(message) {
    if (debug.enabled) {
      console.log(`[${topic}] ${message}`);
    }
  };
}