We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7af2fe2 commit 11010c6Copy full SHA for 11010c6
crates/next-api/src/project.rs
@@ -194,6 +194,7 @@ impl ProjectContainer {
194
}
195
196
impl ProjectContainer {
197
+ #[tracing::instrument(level = "info", name = "initialize project", skip_all)]
198
pub async fn initialize(self: Vc<Self>, options: ProjectOptions) -> Result<()> {
199
self.await?.options_state.set(Some(options));
200
let project = self.project();
@@ -210,6 +211,7 @@ impl ProjectContainer {
210
211
Ok(())
212
213
214
+ #[tracing::instrument(level = "info", name = "update project", skip_all)]
215
pub async fn update(self: Vc<Self>, options: PartialProjectOptions) -> Result<()> {
216
let PartialProjectOptions {
217
root_path,
0 commit comments