This commit is contained in:
Connor Rigby 2017-11-09 11:11:16 -08:00
parent 054cc8dd1c
commit 17a865c232
2 changed files with 2 additions and 2 deletions

View file

@ -19,7 +19,7 @@ defmodule Farmbot.CeleryScript.AST.Node.SendMessage do
Logger.info 2, msg, channels: channels
{:ok, env}
"busy" ->
Logger.budy 2, msg, channels: channels
Logger.busy 2, msg, channels: channels
{:ok, env}
"success" ->
Logger.success 2, msg, channels: channels

View file

@ -46,7 +46,7 @@ defmodule Farmbot.Farmware.Runtime do
Logger.warn 2, "#{inspect farmware} completed with exit status: #{status}"
%{state | exit_status: status}
{^port, {:data, data}} ->
Logger.info 3, "[#{inspect farmware}] sent data: \r\n===========\r\n\r\n#{data} \r\n===========", color: :NC
Logger.info 3, "[#{inspect farmware}] sent data: \r\n\=\=\=\=\=\=\=\=\=\=\=\r\n\r\n#{data} \r\n\=\=\=\=\=\=\=\=\=\=\=", color: :NC
handle_port(state)
end
end