Class: LogAction

Inherits:
Action show all
Defined in:
lib/ruby-macrodroid.rb

Instance Method Summary collapse

Methods inherited from MacroObject

#to_h

Constructor Details

#initialize(h = {}) ⇒ LogAction

Returns a new instance of LogAction.



1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
# File 'lib/ruby-macrodroid.rb', line 1964

def initialize(h={})

  options = {
    log_text: '',
    log_date_and_time: true
  }

  super(options.merge h)

end