Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Packager outputs to console error on successful build. #1507

Open
nohbdy1 opened this issue May 13, 2023 · 2 comments
Open

Packager outputs to console error on successful build. #1507

nohbdy1 opened this issue May 13, 2023 · 2 comments
Labels

Comments

@nohbdy1
Copy link

nohbdy1 commented May 13, 2023

In common.js

function info (message, quiet) {
if (!quiet) {
console.error(message)
}
}

should be

function info (message, quiet) {
if (!quiet) {
console.info(message)
}
}

@welcome
Copy link

welcome bot commented May 13, 2023

👋 Thanks for opening your first issue here! If you have a question about using Electron Packager, read the support docs. If you're reporting a 🐞 bug, please make sure you include steps to reproduce it. Development and issue triage is community-driven, so please be patient and we will get back to you as soon as we can.

To help make it easier for us to investigate your issue, please follow the contributing guidelines.

@bilalswiftsolutions
Copy link
Contributor

please review my pr and merge it if everything is fine

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants