summaryrefslogtreecommitdiff
path: root/src/deno_dir.rs
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-12-10 17:50:41 -0500
committerGitHub <noreply@github.com>2018-12-10 17:50:41 -0500
commit9a960b9f5804f5e855163e7ec43327c28daef845 (patch)
treef67a70c4c35999ff89601968e57783644063a062 /src/deno_dir.rs
parent1548792fb3530efb63432c0c704a3f0053410eb3 (diff)
Use stderr for exceptions (#1303)
Diffstat (limited to 'src/deno_dir.rs')
-rw-r--r--src/deno_dir.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/deno_dir.rs b/src/deno_dir.rs
index 6321d3a03..a3b134f84 100644
--- a/src/deno_dir.rs
+++ b/src/deno_dir.rs
@@ -141,7 +141,7 @@ impl DenoDir {
let mt = Path::new(&media_type_filename);
let src = if self.reload || !p.exists() {
- println!("Downloading {}", module_name);
+ eprintln!("Downloading {}", module_name);
let (source, content_type) = http_util::fetch_sync_string(module_name)?;
match p.parent() {
Some(ref parent) => fs::create_dir_all(parent),