Use of node-homey-log

Currently I am using node-homey-log for logging in my app. I had the following code

this.homeyLog.captureBreadcrumb(
  'ssdp',
  'location address',
  {
    location: ssdpDetailsLocation,
  },
  Log.Severity.Info,
);

But in the latest update (V3 compatible) the Log.js file is changed so Log.Severity.Info does not exist anymore. For that reason my app crashes. How should I change the code for the 2.1.0 node-homey-log library?