diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2021-03-26 12:34:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-26 12:34:25 -0400 |
commit | f46e39c5c5435696daab9df075482e6e5c83533b (patch) | |
tree | 7699e06977e1149b5d056739f981c0217a91ed5e /cli/auth_tokens.rs | |
parent | 6c6f3e87c1a60bc96d006812a670212eeacd1257 (diff) |
remove macro_use (#9884)
Diffstat (limited to 'cli/auth_tokens.rs')
-rw-r--r-- | cli/auth_tokens.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/auth_tokens.rs b/cli/auth_tokens.rs index 64f42fc5c..83c97e641 100644 --- a/cli/auth_tokens.rs +++ b/cli/auth_tokens.rs @@ -1,6 +1,8 @@ // Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. use deno_core::ModuleSpecifier; +use log::debug; +use log::error; use std::fmt; #[derive(Debug, Clone, PartialEq, Eq)] |