Skip to content

Commit 93ffe5e

Browse files
Nedyalko NikolovNedyalko Nikolov
Nedyalko Nikolov
authored and
Nedyalko Nikolov
committed
Add trace log messages about merging Info.plist files.
1 parent d29bc36 commit 93ffe5e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lib/services/ios-project-service.ts

+2
Original file line numberDiff line numberDiff line change
@@ -641,9 +641,11 @@ We will now place an empty obsolete compatability white screen LauncScreen.xib f
641641
let session = new PlistSession({ log: (txt: string) => this.$logger.trace("Info.plist: " + txt) });
642642
let makePatch = (plistPath: string) => {
643643
if (!this.$fs.exists(plistPath).wait()) {
644+
this.$logger.trace("No plist found at: " + plistPath);
644645
return;
645646
}
646647

648+
this.$logger.trace("Schedule merge plist at: " + plistPath);
647649
session.patch({
648650
name: path.relative(projectDir, plistPath),
649651
read: () => this.$fs.readFile(plistPath).wait().toString()

0 commit comments

Comments
 (0)