diff --git a/README.html b/README.html index 5a66ad9..6862f6d 100644 --- a/README.html +++ b/README.html @@ -176,14 +176,14 @@ It features background tasks and interactive chats, and can serve as an interfac

For more Information on how to install, customize and use your new bot, read the Documentation

Log files

-

Since version 0.96 bashbot log commands recieved (updates) and connection errors. If you start bashbot in debug mode bash stdout, stderr and all recieved telegram message updates are logged also.

+

Since version 0.96 bashbot log commands recieved/send and connection errors. If you start bashbot in debug mode bash stdout, stderr and all send/received telegram message are logged also.

To enable debug mode start bashbot with debug as third argument: bashbot start debug

├── logs 
+│   ├── BASHBOT.log      # log what your bot is doing ...
 │   ├── ERROR.log        # connection errors from / to telegram API
-│   ├── UPDATE.log       # summary whats received from your bot
 │   │
 │   ├── DEBUG.log        # stdout/stderr of you bot (debug mode enabled)
-│   └── MESSAGE.log      # full text of all message updates received (debug mode enabled)
+│   └── MESSAGE.log      # full text of all message send/received (debug mode enabled)
 

Security Considerations

@@ -257,6 +257,6 @@ It features background tasks and interactive chats, and can serve as an interfac

@Gnadelwartz

That's it!

If you feel that there's something missing or if you found a bug, feel free to submit a pull request!

-

$$VERSION$$ v0.98-dev-42-geea1de6

+

$$VERSION$$ v0.98-dev-47-gba614b7

diff --git a/README.md b/README.md index 398bbab..8a7569d 100644 --- a/README.md +++ b/README.md @@ -104,18 +104,18 @@ For more Information on how to install, customize and use your new bot, read the ### Log files -Since version 0.96 bashbot log commands recieved (updates) and connection errors. If you start bashbot in debug mode -bash stdout, stderr and all recieved telegram message updates are logged also. +Since version 0.96 bashbot log commands recieved/send and connection errors. If you start bashbot in debug mode +bash stdout, stderr and all send/received telegram message are logged also. To enable debug mode start bashbot with debug as third argument: `bashbot start debug` ``` ├── logs +│   ├── BASHBOT.log # log what your bot is doing ... │   ├── ERROR.log # connection errors from / to telegram API -│   ├── UPDATE.log # summary whats received from your bot │   │ │   ├── DEBUG.log # stdout/stderr of you bot (debug mode enabled) -│   └── MESSAGE.log # full text of all message updates received (debug mode enabled) +│   └── MESSAGE.log # full text of all message send/received (debug mode enabled) ``` ---- @@ -239,4 +239,4 @@ This may happen if to many wrong requests are sent to api.telegram.org, e.g. usi If you feel that there's something missing or if you found a bug, feel free to submit a pull request! -#### $$VERSION$$ v0.98-dev-42-geea1de6 +#### $$VERSION$$ v0.98-dev-47-gba614b7 diff --git a/README.txt b/README.txt index cade7d3..8b24b76 100644 --- a/README.txt +++ b/README.txt @@ -133,21 +133,21 @@ the [Documentation](#Documentation) ### Log files -Since version 0.96 bashbot log commands recieved (updates) and connection -errors. If you start bashbot in debug mode -bash stdout, stderr and all recieved telegram message updates are logged also. +Since version 0.96 bashbot log commands recieved/send and connection errors. If +you start bashbot in debug mode +bash stdout, stderr and all send/received telegram message are logged also. To enable debug mode start bashbot with debug as third argument: `bashbot start debug` ``` ├── logs +│   ├── BASHBOT.log # log what your bot is doing ... │   ├── ERROR.log # connection errors from / to telegram API -│   ├── UPDATE.log # summary whats received from your bot │   │ │   ├── DEBUG.log # stdout/stderr of you bot (debug mode enabled) -│   └── MESSAGE.log # full text of all message updates received (debug -mode enabled) +│   └── MESSAGE.log # full text of all message send/received (debug mode +enabled) ``` ---- @@ -328,4 +328,4 @@ in 'mycommands.sh' as example. If you feel that there's something missing or if you found a bug, feel free to submit a pull request! -#### $$VERSION$$ v0.98-dev-42-geea1de6 +#### $$VERSION$$ v0.98-dev-47-gba614b7 diff --git a/doc/2_usage.md b/doc/2_usage.md index 9e37108..067a5cd 100644 --- a/doc/2_usage.md +++ b/doc/2_usage.md @@ -32,7 +32,7 @@ Have FUN! ├── scripts # place your bashbot interactive and background scripts here │   └── interactive.sh.clean # interactive script template for new scripts │ -├── logs # here you'll find ERROR, UPDATE, DEBUG and MESSAGE.log +├── logs # here you'll find BASHBOT, ERROR, DEBUG and MESSAGE.log │ ├── modules # optional functions, sourced by commands.sh │   ├── aliases.sh # to disable modules rename them xxx.sh.off @@ -281,5 +281,5 @@ send_action "${CHAT[ID]}" "action" #### [Prev Create Bot](1_firstbot.md) #### [Next Advanced Usage](3_advanced.md) -#### $$VERSION$$ v0.98-dev-32-g6e3655f +#### $$VERSION$$ v0.98-dev-47-gba614b7