tweak log

This commit is contained in:
MathieuG-P
2022-12-19 02:44:47 +01:00
parent b8abe30e39
commit a886ccb981
@@ -51,12 +51,12 @@ export class LocalMapsManagerService {
this.windows = WindowManagerService.getInstance();
this.deepLink.addLinkOpenedListener(this.DEEP_LINKS.BeatSaver, (link) => {
log.info("MAP RECEIVED FROM", this.DEEP_LINKS.BeatSaver, link);
log.info("DEEP-LINK RECEIVED FROM", this.DEEP_LINKS.BeatSaver, link);
this.openOneClickDownloadMapWindow(new URL(link).host);
});
this.deepLink.addLinkOpenedListener(this.DEEP_LINKS.ScoreSaber, (link) => {
log.info("MAP RECEIVED FROM", this.DEEP_LINKS.ScoreSaber, link);
log.info("DEEP-LINK RECEIVED FROM", this.DEEP_LINKS.ScoreSaber, link);
this.openOneClickDownloadMapWindow(new URL(link).host, true);
});
}