mirror of
https://github.com/amineo/t2_server_query_elixir.git
synced 2026-01-19 18:14:44 +00:00
17 lines
300 B
Elixir
17 lines
300 B
Elixir
defmodule T2ServerQuery do
|
|
@moduledoc """
|
|
Documentation for `T2ServerQuery`.
|
|
"""
|
|
|
|
require Logger
|
|
|
|
# Just a simple debug logging util
|
|
def log(thing_to_log) do
|
|
Logger.info(inspect thing_to_log)
|
|
IO.puts "\n____________________________________________\n"
|
|
thing_to_log
|
|
end
|
|
|
|
|
|
end
|