diff options
| author | Isaac Whitfield <iw@whitfin.io> | 2018-05-09 08:32:04 -0700 |
|---|---|---|
| committer | Isaac Whitfield <iw@whitfin.io> | 2018-05-11 08:09:53 -0700 |
| commit | 8402a58528dc9f3c47208f3ed152132b67f7f217 (patch) | |
| tree | f90e41476cb258a9523abbbf3ceacb6eab82f4bf | |
| parent | 0a4fbe326a4a05ff01d07d362cc554bd8414ce89 (diff) | |
| download | rust-8402a58528dc9f3c47208f3ed152132b67f7f217.tar.gz rust-8402a58528dc9f3c47208f3ed152132b67f7f217.zip | |
Update an old method name in debug logging
| -rw-r--r-- | src/librustc_incremental/persist/work_product.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_incremental/persist/work_product.rs b/src/librustc_incremental/persist/work_product.rs index d163ad1f3f3..d0c7766cbae 100644 --- a/src/librustc_incremental/persist/work_product.rs +++ b/src/librustc_incremental/persist/work_product.rs @@ -22,7 +22,7 @@ pub fn copy_cgu_workproducts_to_incr_comp_cache_dir( cgu_name: &str, files: &[(WorkProductFileKind, PathBuf)] ) -> Option<(WorkProductId, WorkProduct)> { - debug!("create_trans_partition({:?},{:?})", + debug!("copy_cgu_workproducts_to_incr_comp_cache_dir({:?},{:?})", cgu_name, files); if sess.opts.incremental.is_none() { |
