Skip to content

Commit

Permalink
Merge pull request #23 from zhcui/main
Browse files Browse the repository at this point in the history
Reduce the verbose level for SHCI and Wannier90 import
  • Loading branch information
zhcui authored Dec 13, 2024
2 parents 696c536 + 4e72422 commit 9cb11de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libdmet/lo/pywannier90.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
try:
libwann = lib.load_library(libwann_path)
except OSError:
log.info("wannier90 library path not set or incorrectly.")
log.debug(2, "wannier90 library path not set or incorrectly.")
libwann = None

NUM_NNMAX = 12
Expand Down
2 changes: 1 addition & 1 deletion libdmet/solver/impurity_solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
from libdmet.solver.shci import SHCI
__all__.append("SHCI")
except ImportError:
log.info("ImportError in SHCI solver, settings.py should be set in pyscf")
log.debug(2, "ImportError in SHCI solver, settings.py should be set in pyscf")

class Block(object):
def __init__(self, nproc, nnode=1, TmpDir="./tmp", SharedDir=None,
Expand Down

0 comments on commit 9cb11de

Please sign in to comment.