diff --git a/src/options/fields/icon.ts b/src/options/fields/icon.ts index 1a568d4..7133e69 100644 --- a/src/options/fields/icon.ts +++ b/src/options/fields/icon.ts @@ -22,7 +22,10 @@ export async function icon(options: IconParams): Promise { options.packager.platform, ); } catch (error) { - log.warn('Cannot automatically retrieve the app icon:', error); + log.warn( + 'Cannot automatically retrieve the app icon:', + error.message || '', + ); return null; } }