Skip to content

Commit

Permalink
use message
Browse files Browse the repository at this point in the history
  • Loading branch information
benoit committed Mar 22, 2024
1 parent c4e6e63 commit f8b5dc9
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion R/barplot.R
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ tm_g_barplot <- function(label,
pre_output = NULL,
post_output = NULL,
.test = FALSE) {
logger::log_info("Initializing tm_g_barplot")
message("Initializing tm_g_barplot")
assert_string(label)
assert_string(mae_name)
assert_character(exclude_assays)
Expand Down
2 changes: 1 addition & 1 deletion R/boxplot.R
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ tm_g_boxplot <- function(label,
pre_output = NULL,
post_output = NULL,
.test = FALSE) {
logger::log_info("Initializing tm_g_boxplot")
message("Initializing tm_g_boxplot")
assert_string(label)
assert_string(mae_name)
assert_character(exclude_assays, any.missing = FALSE)
Expand Down
2 changes: 1 addition & 1 deletion R/forestplot.R
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ tm_g_forest_tte <- function(label,
plot_height = c(600L, 200L, 2000L),
plot_width = c(1360L, 500L, 2000L),
.test = FALSE) {
logger::log_info("Initializing tm_g_forest_tte")
message("Initializing tm_g_forest_tte")
assert_string(label)
assert_string(adtte_name)
assert_string(mae_name)
Expand Down
2 changes: 1 addition & 1 deletion R/km.R
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ tm_g_km <- function(label,
pre_output = NULL,
post_output = NULL,
.test = FALSE) {
logger::log_info("Initializing tm_g_km")
message("Initializing tm_g_km")
assert_string(label)
assert_string(adtte_name)
assert_string(mae_name)
Expand Down
2 changes: 1 addition & 1 deletion R/pca.R
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ tm_g_pca <- function(label,
pre_output = NULL,
post_output = NULL,
.test = FALSE) {
logger::log_info("Initializing tm_g_pca")
message("Initializing tm_g_pca")
assert_string(label)
assert_string(mae_name)
assert_tag(pre_output, null.ok = TRUE)
Expand Down
2 changes: 1 addition & 1 deletion R/scatterplot.R
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ tm_g_scatterplot <- function(label,
pre_output = NULL,
post_output = NULL,
.test = FALSE) {
logger::log_info("Initializing tm_g_scatterplot")
message("Initializing tm_g_scatterplot")
assert_string(label)
assert_string(mae_name)
assert_character(exclude_assays, any.missing = FALSE)
Expand Down
2 changes: 1 addition & 1 deletion R/volcanoplot.R
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ tm_g_volcanoplot <- function(label,
pre_output = NULL,
post_output = NULL,
.test = FALSE) {
logger::log_info("Initializing tm_g_volcanoplot")
message("Initializing tm_g_volcanoplot")
assert_string(label)
assert_string(mae_name)
assert_character(exclude_assays)
Expand Down

0 comments on commit f8b5dc9

Please sign in to comment.