Skip to content

Commit 681067e

Browse files
committed
debug: Add debug print on received migration limit
1 parent 4ed5695 commit 681067e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

lib/llm/src/migration.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,11 @@ pub struct Migration {
2929

3030
impl Migration {
3131
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+
);
3237
Ok(Arc::new(Self {
3338
migration_limit: mdc.migration_limit,
3439
}))

0 commit comments

Comments
 (0)