Skip to content

Instantly share code, notes, and snippets.

@teburd
Last active December 17, 2015 07:09
Show Gist options
  • Save teburd/5570713 to your computer and use it in GitHub Desktop.
Save teburd/5570713 to your computer and use it in GitHub Desktop.
Erlang
log_attrs(Type, ActionAttrs) ->
case ActionAttrs of
[] ->
lager:debug("empty");
[_] ->
lager:debug("one");
[_, _] ->
lager:debug("two")
end.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment