summaryrefslogtreecommitdiff
path: root/src/handlers.rs
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-07-26 17:37:09 -0400
committerRyan Dahl <ry@tinyclouds.org>2018-07-29 00:22:39 -0400
commite7445507aac75b7e1471413f862c7f72ef0d02c4 (patch)
treeed11105a12855526e26ed4002e5487186d0fcc9a /src/handlers.rs
parent57c52a83a07c9347eb4ca0504bdb6d4c2627bb22 (diff)
Implement a logger so we can get logging output.
Diffstat (limited to 'src/handlers.rs')
-rw-r--r--src/handlers.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/handlers.rs b/src/handlers.rs
index 0f6ed094d..6dc08f919 100644
--- a/src/handlers.rs
+++ b/src/handlers.rs
@@ -67,7 +67,7 @@ fn resolve_module(
module_specifier: &String,
containing_file: &String,
) -> Result<(String, String), url::ParseError> {
- info!(
+ debug!(
"resolve_module before module_specifier {} containing_file {}",
module_specifier, containing_file
);