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

feat: silent flag in .air.toml, suppressing all air prints #641

Merged
merged 2 commits into from
Sep 25, 2024

Conversation

jesses-code-adventures
Copy link
Contributor

@jesses-code-adventures jesses-code-adventures commented Sep 7, 2024

useful if the app being watched has structured outputs that are being piped into subsequent program/s.

@silverwind
Copy link
Contributor

silverwind commented Sep 12, 2024

Will errors still show with this flag enabled? If so, it should be fine imho. Errors should never be suppressed imho.

@jesses-code-adventures
Copy link
Contributor Author

this library generally uses log.Fatalf() for errors, whereas these changes only affect info and debug logs in runner/util.go and runner/logger.go which produce the lion's share of the logs. shouldn't be anything to worry about as far as errors being suppressed.

@cosmtrek
Copy link
Collaborator

@jesses-code-adventures Hi, thanks for adding the silent flag, could you rebase the master and rerun the checks?

useful if the app being watched has structured outputs that are being
piped into subsequent program/s.
@jesses-code-adventures
Copy link
Contributor Author

jesses-code-adventures commented Sep 25, 2024

@cosmtrek i have rebased the master but i think I need maintainer approval to run checks

Copy link

codecov bot commented Sep 25, 2024

Codecov Report

Attention: Patch coverage is 8.69565% with 21 lines in your changes missing coverage. Please review.

Files with missing lines Patch % Lines
runner/util.go 0.00% 6 Missing and 6 partials ⚠️
main.go 0.00% 7 Missing ⚠️
runner/logger.go 0.00% 1 Missing and 1 partial ⚠️
Files with missing lines Coverage Δ
runner/config.go 79.47% <100.00%> (+0.93%) ⬆️
runner/logger.go 65.30% <0.00%> (-2.78%) ⬇️
main.go 0.00% <0.00%> (ø)
runner/util.go 72.53% <0.00%> (-3.94%) ⬇️

@cosmtrek cosmtrek merged commit 0dfcd29 into air-verse:master Sep 25, 2024
7 of 8 checks passed
@jesses-code-adventures jesses-code-adventures deleted the silent_config_flag branch October 5, 2024 04:31
wafer-bw added a commit to searchspring/air that referenced this pull request Jan 31, 2025
* chore: bump go to 1.23 (air-verse#650)

* docs: update banner (air-verse#651)

* fix proxy retry loop (air-verse#635)

This addresses two bugs:
1) The loop could exit with an error condition present and fail to
   inform the user.
2) On Windows 11, syscall.ECONNREFUSED is not returned. Instead we
   receive net.OpError with a message similar to:

"unable to reach app: Get "http://localhost:7000/": dial tcp [::1]:7000: connectex: No connection could be made because the target machine actively refused it."

The Fix:
Since the retry loop is short; just 1 second maximum, we retry until no
error happens. If an error does occur, we inform the user.

* Use web page address when making request to reload proxy (air-verse#625)

* Use web page address when making request to reload proxy

Signed-off-by: Alexandra Fishova <[email protected]>

* Create event source with just a path because browser can handle address on its own.

Signed-off-by: Alexandra Fishova <[email protected]>

---------

Signed-off-by: Alexandra Fishova <[email protected]>

* fix the stop_on_error is false configuration does not work (air-verse#555)

* fix color output (air-verse#551)

* Set the Via header in proxy requests to origin and in client responses (air-verse#629)

* Set the Via header in proxy requests to origin and in client responses

* Remove pseudonym and use host only

* feat: Make include_file overrule include_ext, fixes: air-verse#350, base_on: air-verse#358 (air-verse#416)

* feat: Make include_file overrule include_ext

* feat: Make include_file overrule include_ext unittest

* fix: broken code (air-verse#652)

* feat: silent flag in .air.toml, suppressing all air prints (air-verse#641)

* feat: silent flag in .air.toml, suppressing all air prints

useful if the app being watched has structured outputs that are being
piped into subsequent program/s.

* update: add silent to air_example.toml

* FIX: Support working directories containing whitespace (air-verse#646)

* encapsulate paths with quotes to escape spaces

* encapsulate paths with quotes to escape spaces

* preprocess error in test

* Revert "FIX: Support working directories containing whitespace (air-verse#646)" (air-verse#665)

This reverts commit df13da5.

* refactor: remove unnecessary var copy in for (air-verse#682)

* docs: fix badge link in README-zh_cn.md (air-verse#681)

* refactor: simplify test asserts; enable testifylint (air-verse#680)

* Update unclear .profile changes in README.md (air-verse#684)

* Fix: typo in air_example.toml (air-verse#706)

* Implement kill delay on Windows (air-verse#552)

* fix color output

* Implement kill delay on Windows

* Revert the change on master

* Remove extra newline

* Handle absolute paths in config (air-verse#318)

* remove a data race by compiling the exclude regexes in the preprocess phase (air-verse#677)

the regex compilation was done lazily on first access but did not properly synchronize
for being accessed by multiple watcher goroutines

between the option of adding a mutex for something that (should) only ever happen
once and removing the potential for a race, this seems like the better choice

* catch and report start cmd failure rather than panicing (air-verse#676)

* do not report the process as running if it failed to start

* change the return values on error to match what the other platforms produce

* chore: fix test case TestRegexes

* air -h will be document of air

* Update README for air help command

* fix: default config override (air-verse#719)

* Avoid duplicating cors header. (air-verse#727)

* fix: typos (air-verse#728)

* wait for killfunc completion when shutting down current app (air-verse#670)

* wait for killfunc completion when shutting down current app

---------

Co-authored-by: jingdi.zhu <[email protected]>

* Feature: Show build errors when using proxy (air-verse#725)

* proxy: stream reload and error messages

* proxy: Console log on build failure

* proxy: show build errors in a modal

---------

Co-authored-by: xiantang <[email protected]>

* Add exiter to test os.Exit case (air-verse#729)

authored-by: jingdi.zhu <[email protected]>

* Fix: using powershell instead of cmd /C (air-verse#708)

---------

Signed-off-by: Alexandra Fishova <[email protected]>
Co-authored-by: Rick Yu <[email protected]>
Co-authored-by: Greg Dietsche <[email protected]>
Co-authored-by: Alexandra Fishova <[email protected]>
Co-authored-by: dengdajun <[email protected]>
Co-authored-by: 8LWXpg <[email protected]>
Co-authored-by: dedalusj <[email protected]>
Co-authored-by: zhb127 <[email protected]>
Co-authored-by: ~ jesse ~ <[email protected]>
Co-authored-by: osteensco <[email protected]>
Co-authored-by: Oleksandr Redko <[email protected]>
Co-authored-by: Gourav Kolhatkar <[email protected]>
Co-authored-by: Olivia Bahr <[email protected]>
Co-authored-by: ZipFile <[email protected]>
Co-authored-by: Isak Styf <[email protected]>
Co-authored-by: xiantang <[email protected]>
Co-authored-by: Nemanja Milićević <[email protected]>
Co-authored-by: Brandon Bloom <[email protected]>
Co-authored-by: Nathan Baulch <[email protected]>
Co-authored-by: jingdi.zhu <[email protected]>
Co-authored-by: Polo123456789 <[email protected]>
Co-authored-by: Po <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants