linsoft commited on
Commit
c858a47
·
verified ·
1 Parent(s): 8de49eb

remove mlc_llm deps

Browse files
Files changed (1) hide show
  1. bundle_weight.py +8 -2
bundle_weight.py CHANGED
@@ -2,10 +2,16 @@ import argparse
2
  import os
3
  import subprocess
4
  from pathlib import Path
 
5
 
6
- from mlc_llm.support import logging
7
 
8
- logging.enable_logging()
 
 
 
 
 
 
9
  logger = logging.getLogger(__name__)
10
 
11
 
 
2
  import os
3
  import subprocess
4
  from pathlib import Path
5
+ import logging
6
 
 
7
 
8
+ logging.basicConfig(
9
+ level=logging.INFO,
10
+ style="{",
11
+ datefmt="%Y-%m-%d %H:%M:%S",
12
+ format="[{asctime}] {levelname} {filename}:{lineno}: {message}",
13
+ )
14
+
15
  logger = logging.getLogger(__name__)
16
 
17