Skip to content

Commit

Permalink
fix of the debug echo
Browse files Browse the repository at this point in the history
  • Loading branch information
xieguigang committed Feb 1, 2024
1 parent 015e1bd commit 2d0c3df
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion R/errors.R
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ const dependency.context_env_missing = function(context) {
"there is no runtime environment required context symbol is missing.";
} else {
paste([
`there are ${length(context)} required context symbol is missing or data type is mis-matched in the workflow:`,
# the first elements is all context symbols
# for debug used only
`there are ${length(context)-1} required context symbol is missing or data type is mis-matched in the workflow:`,
JSON::json_encode(context)
], sep = " ");
}
Expand Down

0 comments on commit 2d0c3df

Please sign in to comment.