mirror of
https://github.com/amineo/t2_server_query_elixir.git
synced 2026-03-03 20:40:22 +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
|