-
-
Notifications
You must be signed in to change notification settings - Fork 13
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
239 utilize logger::log_shiny_input_change
#750
Conversation
…general") for all modules
@pawelru kindly asking you for the review, as you are the logging expert these days :) |
Code Coverage Summary
Diff against main
Results for commit: 75be73a Minimum allowed coverage is ♻️ This comment has been updated with latest results |
Unit Tests Summary 1 files 22 suites 11m 54s ⏱️ Results for commit 75be73a. ♻️ This comment has been updated with latest results. |
Unit Test Performance Difference
Additional test case details
Results for commit 65415c2 ♻️ This comment has been updated with latest results. |
There was a discussion about this here: insightsengineering/teal.logger#74. This idea collapses for some good reasons. You should not be afraid of promoting a package if it is really used. I'm personally not a big fan of hiding (true) dependencies. I think it creates more bad than good. What you have done is correct. |
Got it, thanks @pawelru for suggestions |
Thanks @pawelru - I did updated NEWS, verified content of insightsengineering/teal.goshawk#274 |
Thanks. It looks to me that changes in |
Created an issue, for the future, to keep in mind that the |
Similar to insightsengineering/teal.modules.general#750 insightsengineering/teal.modules.clinical#227 --------- Signed-off-by: Marcin <[email protected]>
Close #239
The example loading for
tm_a_pca
on a startup shows how the input change logging is made.We are connected to package namespace (
namespace = "teal.modules.general"
)that is created on a startup with
teal.logger::register_logger(namespace = "teal.modules.general")
This function needs to be called in the server function, so there is no way this can be run during the package startup.
Note: Needed to bring
logger
to Imports.