@@ -25,11 +25,6 @@ impl ContextLoadMode {
25
25
let mut map_str = String :: from ( r#"var _map_lazy = {"# ) ;
26
26
map. iter ( ) . for_each ( |( key, value) | match self {
27
27
ContextLoadMode :: Sync => {
28
- println ! (
29
- "... render_module_import1: {} -> {}" ,
30
- win_path( key) ,
31
- win_path( value)
32
- ) ;
33
28
map_str. push_str ( & format ! (
34
29
r#"
35
30
"{}": ()=> require("{}"),"# ,
@@ -39,11 +34,6 @@ impl ContextLoadMode {
39
34
}
40
35
41
36
ContextLoadMode :: Lazy => {
42
- println ! (
43
- "... render_module_import2: {} -> {}" ,
44
- win_path( key) ,
45
- win_path( value)
46
- ) ;
47
37
map_str. push_str ( & format ! (
48
38
r#"
49
39
"{}": ()=> import("{}"),"# ,
@@ -160,7 +150,6 @@ impl VirtualContextModuleRender {
160
150
pub fn module_id_map ( & self , map : & BTreeMap < String , String > , context : & Arc < Context > ) -> String {
161
151
let mut map_str = String :: from ( r#"var _map = {"# ) ;
162
152
for ( key, value) in map. iter ( ) {
163
- println ! ( "... replace key: {} -> {}" , key, win_path( key) ) ;
164
153
map_str. push_str ( & format ! (
165
154
r#"
166
155
"{}": "{}","# ,
0 commit comments