Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
ShawnDriscoll committed Oct 2, 2017
1 parent 3b4f95a commit fdf9b83
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 7 deletions.
Binary file modified docs/build/.doctrees/debugging.doctree
Binary file not shown.
Binary file modified docs/build/.doctrees/environment.pickle
Binary file not shown.
8 changes: 6 additions & 2 deletions docs/build/_sources/debugging.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,19 @@ folder it creates if one isn't there already. In the file you will see mentions
a default logging mode of ``INFO`` which isn't that verbose. ::

module_log.setLevel(logging.INFO)


::

Sun, 01 Oct 2017 16:08:03 INFO diceroll - Logging started.
Sun, 01 Oct 2017 16:08:03 INFO diceroll - roll() v2.2 started, and running...
Sun, 01 Oct 2017 16:08:03 INFO diceroll - 3D4 = 3D4+0 = 10

Changing **diceroll's** logging mode to ``DEBUG`` will record debugging messages in the ``Logs\diceroll.log`` file. ::

module_log.setLevel(logging.DEBUG)


::

Sun, 01 Oct 2017 16:27:21 INFO diceroll - Logging started.
Sun, 01 Oct 2017 16:27:21 INFO diceroll - roll() v2.2 started, and running...
Sun, 01 Oct 2017 16:27:21 DEBUG diceroll - Asked to roll 3D4:
Expand Down
2 changes: 1 addition & 1 deletion docs/build/modindex.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<link rel="index" title="Global index" href="genindex.html" />
<link rel="search" title="Search" href="search.html" />
<link rel="top" title="diceroll 2.2 Manual" href="index.html" />
<generator object at 0x036B92B0>
<generator object at 0x03698B70>

<script type="text/javascript">
DOCUMENTATION_OPTIONS.COLLAPSE_MODINDEX = true;
Expand Down
2 changes: 1 addition & 1 deletion docs/build/search.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<link rel="index" title="Global index" href="genindex.html" />
<link rel="search" title="Search" href="" />
<link rel="top" title="diceroll 2.2 Manual" href="index.html" />
<generator object at 0x03693B70>
<generator object at 0x0368A6E8>
<script type="text/javascript" src="_static/searchtools.js"></script>

</head>
Expand Down
2 changes: 1 addition & 1 deletion docs/build/searchindex.json

Large diffs are not rendered by default.

8 changes: 6 additions & 2 deletions docs/source/debugging.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,19 @@ folder it creates if one isn't there already. In the file you will see mentions
a default logging mode of ``INFO`` which isn't that verbose. ::

module_log.setLevel(logging.INFO)

::

Sun, 01 Oct 2017 16:08:03 INFO diceroll - Logging started.
Sun, 01 Oct 2017 16:08:03 INFO diceroll - roll() v2.2 started, and running...
Sun, 01 Oct 2017 16:08:03 INFO diceroll - 3D4 = 3D4+0 = 10

Changing **diceroll's** logging mode to ``DEBUG`` will record debugging messages in the ``Logs\diceroll.log`` file. ::
module_log.setLevel(logging.DEBUG)

::

Sun, 01 Oct 2017 16:27:21 INFO diceroll - Logging started.
Sun, 01 Oct 2017 16:27:21 INFO diceroll - roll() v2.2 started, and running...
Sun, 01 Oct 2017 16:27:21 DEBUG diceroll - Asked to roll 3D4:
Expand Down

0 comments on commit fdf9b83

Please sign in to comment.