In triggers the following conditional predicates are available: insert, updating, deleting.
Logging the type of trigger event can require a bunch of repetitive code. Have a function that looks like (pseudo code):
l_return := case
when inserting then 'inserting'
when updating then 'updating'
when deleting then 'deleting'
else null; -- This will occur when not in a "each row" trigger