Skip to content

Commit

Permalink
🔥 Remove debugs
Browse files Browse the repository at this point in the history
  • Loading branch information
malted committed Sep 5, 2024
1 parent e696839 commit e3a2c07
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "replit-takeout"
version = "1.4.1"
version = "1.4.2"
edition = "2021"
authors = ["Ben Dixon <[email protected]>"]

Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ async fn airtable_loop() -> Result<()> {
loop {
let mut user;
'mainloop: loop {
info!("Getting airtable records");
debug!("Getting airtable records");
let records = airtable::get_records().await?;
for record in records {
if record.fields.status == ProcessState::Registered {
Expand Down
8 changes: 0 additions & 8 deletions src/replit_graphql.rs
Original file line number Diff line number Diff line change
Expand Up @@ -290,10 +290,6 @@ impl ProfileRepls {
repl.id, repl.slug, download_zip
);
synced_user.fields.file_count += file_count;
info!(
"nohist YO! {file_count}, total: {:?}",
synced_user.fields.file_count
);
no_history_download_count += 1;
progress.failed.no_history += 1;

Expand Down Expand Up @@ -328,10 +324,6 @@ impl ProfileRepls {
Ok(Ok((DownloadStatus::Full, file_count))) => {
info!("Downloaded {}::{} to {}", repl.id, repl.slug, main_location);
synced_user.fields.file_count += file_count;
info!(
"hist YO! {file_count}, total: {:?}",
synced_user.fields.file_count
);
successful_download_count += 1;
progress.successful += 1;
}
Expand Down

0 comments on commit e3a2c07

Please sign in to comment.