diff options
| author | Dylan Araps <dylanaraps@users.noreply.github.com> | 2018-04-01 13:11:07 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-04-01 13:11:07 +1000 |
| commit | 50de3cf270592d5f047b1550b0bbf35d709d96a8 (patch) | |
| tree | fdc9cd19b7746a29803e0fb9b28d294da793152b /pywal/sequences.py | |
| parent | d5f39135b2d054af23c0af8594ee772b2a544669 (diff) | |
| parent | eadcb3bfd365aea5a0397262e3b41e5ed78848dd (diff) | |
Merge pull request #216 from dylanaraps/logging
general: Added logging.
Diffstat (limited to 'pywal/sequences.py')
| -rw-r--r-- | pywal/sequences.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pywal/sequences.py b/pywal/sequences.py index 0376342..0a6a99e 100644 --- a/pywal/sequences.py +++ b/pywal/sequences.py @@ -2,6 +2,7 @@ Send sequences to all open terminals. """ import glob +import logging import os from .settings import CACHE_DIR, OS @@ -89,4 +90,4 @@ def send(colors, cache_dir=CACHE_DIR, to_send=True): util.save_file(sequences, term) util.save_file(sequences, os.path.join(cache_dir, "sequences")) - print("colors: Set terminal colors.") + logging.info("Set terminal colors.") |
