Set the minimum log level above which logs will be written to the OpenFin log
Example
const VERBOSE = fin.desktop.System.logLevels.VERBOSE;
fin.desktop.System.setMinLogLevel(
VERBOSE,
() => console.log('success'),
(errString, err) => console.log(errString, err));
`