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 61a4478 commit 661efe9Copy full SHA for 661efe9
crates/pg_workspace/src/workspace/server.rs
@@ -163,11 +163,8 @@ impl WorkspaceServer {
163
.migrations
164
.as_ref()
165
.and_then(|migration_settings| {
166
- tracing::info!("Checking migration settings: {:?}", migration_settings);
167
let ignore_before = migration_settings.after.as_ref()?;
168
- tracing::info!("Checking migration settings: {:?}", ignore_before);
169
let migrations_dir = migration_settings.path.as_ref()?;
170
- tracing::info!("Checking migration settings: {:?}", migrations_dir);
171
let migration = migration::get_migration(path, migrations_dir)?;
172
173
Some(&migration.timestamp <= ignore_before)
0 commit comments