I used the --log_filename (and chose the name statlog for the logfile) option because there were no error logs being created. I ran the ingest tool again and it created the log file "statlog". This file was blank and showed no errors. I can't get the tool to add metadata. I found another way to do it but I have to hardcode in the path for the object. When I use the python-irodsclient, I can start a seesion and then pass that session into an object and manipulate it. I use:
from irods.session import iRODSSession
>>> with iRODSSession(host='localhost', port=1247, user='rods', password='rods', zone='tempZone') as session:
obj = session.data_objects.get("/tempZone/home/rods/reg_coll/dir1/mesh3.msh")
as you can see I had to hard code the path, this would be fine for a single file, but I want to iterate and apply metadata to each file in the folder the way the example does.