Skip to content
Prev Previous commit
Next Next commit
debug: Add debug print on received migration limit
  • Loading branch information
kthui committed Aug 25, 2025
commit 8f12b181bd138aabddcb5b10a434ffb58b959938
5 changes: 5 additions & 0 deletions lib/llm/src/migration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ pub struct Migration {

impl Migration {
pub async fn from_mdc(mdc: ModelDeploymentCard) -> Result<Arc<Self>> {
tracing::debug!(
"model {} migration limit {}",
mdc.display_name,
mdc.migration_limit
);
Ok(Arc::new(Self {
migration_limit: mdc.migration_limit,
}))
Expand Down
Loading