12 lines
417 B
Python
12 lines
417 B
Python
import logging
|
|
|
|
logger = logging.getLogger()
|
|
|
|
|
|
def handle_get_rates_inputs(start_date, end_date, currencies, dry_run, output):
|
|
logger.info("Handling inputs.")
|
|
logger.debug(f"Received start_date: {start_date}")
|
|
logger.debug(f"Received end_date: {end_date}")
|
|
logger.debug(f"Received currencies: {currencies}")
|
|
logger.debug(f"dry_run state: {dry_run}")
|
|
logger.debug(f"Received output: {output}")
|