about summary refs log tree commit diff
diff options
context:
space:
mode:
authorIsaac Whitfield <iw@whitfin.io>2018-05-09 08:32:04 -0700
committerIsaac Whitfield <iw@whitfin.io>2018-05-11 08:09:53 -0700
commit8402a58528dc9f3c47208f3ed152132b67f7f217 (patch)
treef90e41476cb258a9523abbbf3ceacb6eab82f4bf
parent0a4fbe326a4a05ff01d07d362cc554bd8414ce89 (diff)
downloadrust-8402a58528dc9f3c47208f3ed152132b67f7f217.tar.gz
rust-8402a58528dc9f3c47208f3ed152132b67f7f217.zip
Update an old method name in debug logging
-rw-r--r--src/librustc_incremental/persist/work_product.rs2
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() {