Skip to content

Commit f997b1e

Browse files
style: update Dataset doc comments and logging level
1 parent 84e47d9 commit f997b1e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pre-compute/src/compute/dataset.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ const IPFS_GATEWAYS: &[&str] = &[
2020
const AES_KEY_LENGTH: usize = 32;
2121
const AES_IV_LENGTH: usize = 16;
2222

23-
/// Represents a dataset for bulk processing in a Trusted Execution Environment (TEE).
23+
/// Represents a dataset in a Trusted Execution Environment (TEE).
2424
///
2525
/// This structure contains all the information needed to download, verify, and decrypt
26-
/// a single dataset as part of bulk processing.
26+
/// a single dataset.
2727
#[cfg_attr(test, derive(Debug))]
2828
#[derive(Clone, Default)]
2929
pub struct Dataset {
@@ -72,7 +72,7 @@ impl Dataset {
7272
info!("Successfully downloaded from {full_url}");
7373
Some(content)
7474
} else {
75-
info!("Failed to download from {full_url}");
75+
error!("Failed to download from {full_url}");
7676
None
7777
}
7878
})

0 commit comments

Comments
 (0)