{
"cells": [
{
"cell_type": "markdown",
"id": "67d6982f",
"metadata": {},
"source": [
"# Configuring the Logging Output for TARDIS"
]
},
{
"cell_type": "markdown",
"id": "ac4ba612",
"metadata": {},
"source": [
"**TARDIS** has a Notebook logger that logs information of Simulation runs. The logs allows to access vital information regarding the execution sequence, data for plasma stratification & progress of the simulation.
\n",
"**TARDIS** allows configuring the logger via *Functional Arguments* as well as *YAML Parameters*.\n",
"The following code snippets are some of the possible configuration that is available for the notebook logging done with TARDIS simulation."
]
},
{
"cell_type": "markdown",
"id": "ce886182",
"metadata": {},
"source": [
"## Default Configuration"
]
},
{
"cell_type": "markdown",
"id": "34e59abc",
"metadata": {},
"source": [
"The default configuration of the Notebook Simulation logger is such that it doesn't output any logs."
]
},
{
"cell_type": "markdown",
"id": "41da9db6",
"metadata": {},
"source": [
"The output simulation logging, while executing the **TARDIS** simulation (default behaviour), can be seen below:"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "018bb127",
"metadata": {},
"outputs": [],
"source": [
"from tardis import run_tardis\n",
"from tardis.io.atom_data import download_atom_data"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "ad59aa05",
"metadata": {
"scrolled": false
},
"outputs": [],
"source": [
"# We download the atomic data needed to run the simulation\n",
"download_atom_data('kurucz_cd23_chianti_H_He')"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "64cf4bb2",
"metadata": {},
"outputs": [],
"source": [
"sim = run_tardis(\"tardis_config_logger.yml\", show_cplots=False)"
]
},
{
"cell_type": "markdown",
"id": "9bf77405",
"metadata": {},
"source": [
"It can be examined that the logs are not printed.
The logging level, by default, is set to `CRITICAL`. Logs will only be captured if any `CRITICAL` level logs are encountered while running the simulation."
]
},
{
"cell_type": "markdown",
"id": "420dd7c2",
"metadata": {},
"source": [
"## Logging Configuration (Functional Arguments)"
]
},
{
"cell_type": "markdown",
"id": "ac8d5088",
"metadata": {},
"source": [
"The `run_tardis()` function from the `tardis module` has two functional arguments:`log_level` & `specific_log_level`."
]
},
{
"cell_type": "markdown",
"id": "d58f2d9c",
"metadata": {},
"source": [
"