class Google::Logging::SourceLocation

def initialize file:, line:, function:

Parameters:
  • function (String) -- Name of the calling function.
  • line (String) -- Line number as a string.
  • file (String) -- Path to the source file.
def initialize file:, line:, function:
  @file = file.to_s
  @line = line.to_s
  @function = function.to_s
end