Current section

Files

Jump to
toolshed lib_src nerves_runtime dmesg.ex
Raw

lib_src/nerves_runtime/dmesg.ex

# SPDX-FileCopyrightText: 2023 Frank Hunleth
#
# SPDX-License-Identifier: Apache-2.0
#
defmodule Toolshed.NervesRuntime.Dmesg do
@doc """
Print out kernel log messages
"""
@spec dmesg() :: :"do not show this result in output"
def dmesg() do
Toolshed.cmd("dmesg")
IEx.dont_display_result()
end
end