diff --git a/fhem/FHEM/72_FRITZBOX.pm b/fhem/FHEM/72_FRITZBOX.pm index bc843c57d..d9961ae8f 100644 --- a/fhem/FHEM/72_FRITZBOX.pm +++ b/fhem/FHEM/72_FRITZBOX.pm @@ -7035,24 +7035,31 @@ sub FRITZBOX_fritztris($)
  • -
    get <name> fritzLog <hash | table> <all | sys | wlan | usb | net | fon>
    +
    get <name> fritzLog <table> <all | sys | wlan | usb | net | fon>

    - <hash> forwards the result to a function (non-blocking) myUtilsFritzLogExPost($hash, $filter, $result) for own processing. + <table> displays the result in FhemWeb as a table. +

    +
    get <name> fritzLog <hash> [on|off] <all | sys | wlan | usb | net | fon>
    +
    + <hash> [on] forwards the result to a function (non-blocking) myUtilsFritzLogExPostnb($hash, $filter, $result) for own processing. +
    + <hash> <off> forwards the result to a function (blocking) myUtilsFritzLogExPost($hash, $filter, $result) für eigene Verarbeitung weiter.
    where:
    $hash -> Fhem Device hash,
    $filter -> log filter,
    $result -> return of the data.lua query as JSON.

    - <table> displays the result in FhemWeb as a table. -
    + [on|off] gives parameter <hash> indicates whether further processing is blocking [off] or non-blocking [on] (default). +

    <all | sys | wlan | usb | net | fon> these parameters are used to filter the log information.

    Feeback stored in the readings:
    - retStat_fritzLogExPost = status of myUtilsFritzLogExPost
    + retStat_fritzLogExPost = status of myUtilsFritzLogExPostnb / myUtilsFritzLogExPostnb
    retStat_fritzLogInfo = status log info request

    Needs FRITZ!OS 7.21 or higher. +

  • @@ -7636,24 +7643,30 @@ sub FRITZBOX_fritztris($)