Fix logbook entry
This commit is contained in:
parent
3d6198d8dc
commit
43cde6aeae
1 changed files with 3 additions and 0 deletions
|
@ -11,6 +11,7 @@ import logging
|
||||||
import attr
|
import attr
|
||||||
import voluptuous as vol
|
import voluptuous as vol
|
||||||
|
|
||||||
|
from homeassistant.loader import bind_hass
|
||||||
from homeassistant.components import sun
|
from homeassistant.components import sun
|
||||||
from homeassistant.components.http import HomeAssistantView
|
from homeassistant.components.http import HomeAssistantView
|
||||||
from homeassistant.const import (
|
from homeassistant.const import (
|
||||||
|
@ -67,11 +68,13 @@ LOG_MESSAGE_SCHEMA = vol.Schema({
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
|
@bind_hass
|
||||||
def log_entry(hass, name, message, domain=None, entity_id=None):
|
def log_entry(hass, name, message, domain=None, entity_id=None):
|
||||||
"""Add an entry to the logbook."""
|
"""Add an entry to the logbook."""
|
||||||
hass.add_job(async_log_entry, hass, name, message, domain, entity_id)
|
hass.add_job(async_log_entry, hass, name, message, domain, entity_id)
|
||||||
|
|
||||||
|
|
||||||
|
@bind_hass
|
||||||
def async_log_entry(hass, name, message, domain=None, entity_id=None):
|
def async_log_entry(hass, name, message, domain=None, entity_id=None):
|
||||||
"""Add an entry to the logbook."""
|
"""Add an entry to the logbook."""
|
||||||
data = {
|
data = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue