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 1c8188a commit 8f12b18Copy full SHA for 8f12b18
lib/llm/src/migration.rs
@@ -29,6 +29,11 @@ pub struct Migration {
29
30
impl Migration {
31
pub async fn from_mdc(mdc: ModelDeploymentCard) -> Result<Arc<Self>> {
32
+ tracing::debug!(
33
+ "model {} migration limit {}",
34
+ mdc.display_name,
35
+ mdc.migration_limit
36
+ );
37
Ok(Arc::new(Self {
38
migration_limit: mdc.migration_limit,
39
}))
0 commit comments