We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6d21a0 commit 0370f23Copy full SHA for 0370f23
cli/src/main.rs
@@ -73,6 +73,8 @@ fn main() -> anyhow::Result<()> {
73
74
let directories = options.directories.as_slice();
75
76
+ info!("Using directories: {directories:?}");
77
+
78
let language_type = match options.language {
79
None => panic!("no language specified; `clap` should have guaranteed its presence"),
80
Some(language) => match language {
@@ -160,6 +162,8 @@ fn main() -> anyhow::Result<()> {
160
162
161
163
check_parse_errors(&crate_parsed_data)?;
164
165
+ info!("typeshare started writing generated types");
166
167
write_generated(
168
destination,
169
lang.as_mut(),
0 commit comments