Skip to content

Commit

Permalink
Add --log-format
Browse files Browse the repository at this point in the history
  • Loading branch information
synesthesiam committed Jan 19, 2024
1 parent d1578cb commit 87bfcf4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion wyoming_satellite/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,9 @@ async def main() -> None:
"--debug-recording-dir", help="Directory to store audio for debugging"
)
parser.add_argument("--debug", action="store_true", help="Log DEBUG messages")
parser.add_argument(
"--log-format", default=logging.BASIC_FORMAT, help="Format for log messages"
)
args = parser.parse_args()

# Validate args
Expand Down Expand Up @@ -267,7 +270,9 @@ async def main() -> None:
if args.vad and (args.wake_uri or args.wake_command):
_LOGGER.warning("VAD is not used with local wake word detection")

logging.basicConfig(level=logging.DEBUG if args.debug else logging.INFO)
logging.basicConfig(
level=logging.DEBUG if args.debug else logging.INFO, format=args.log_format
)
_LOGGER.debug(args)

if args.debug_recording_dir:
Expand Down

0 comments on commit 87bfcf4

Please sign in to comment.