diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2018-04-01 12:28:32 +1000 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2018-04-01 12:28:32 +1000 |
| commit | cf6ac7944d08e64a1392a9ee4ec46a3624732418 (patch) | |
| tree | 54784210f3a51955e4a25face379117684f5067c /pywal/sequences.py | |
| parent | d5f39135b2d054af23c0af8594ee772b2a544669 (diff) | |
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.") |
