Changing default options for util.inspect
console.log and relatives use util.inspect to stringify complex structures, which creates somewhat of a dilemma when you have an application making use of bare console functions but you'd like unrestricted nesting (depth: null) or more than 100 visible array elements ( maxArrayLength: null) by default.
To change the default, I could see util.inspect.setup(opts) being made available. Anyone with me?