Skip to content

Commit f6c0531

Browse files
committed
debug: Add debug print on received migration limit
1 parent 9493690 commit f6c0531

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
@@ -41,6 +41,11 @@ pub struct Migration {
4141

4242
impl Migration {
4343
pub async fn from_mdc(mdc: ModelDeploymentCard) -> Result<Arc<Self>> {
44+
tracing::debug!(
45+
"model {} migration limit {}",
46+
mdc.display_name,
47+
mdc.migration_limit
48+
);
4449
Ok(Arc::new(Self {
4550
migration_limit: mdc.migration_limit,
4651
}))

0 commit comments

Comments
 (0)