Since the move to IGSIO for some functionality, vtkPlusLogger inherits from vtkIGSIOLogger but creates a separate instance. So my application which used to set log level to 5 now does not get all the messages, because Plus internals now use vtkIGSIOLogger which is a separate instance from vtkPlusLogger.
Expected behavior: there is a single logger instance, and vtkPlusLogger is an empty descendant, or even better just a rename using vtkPlusLogger = vtkIGSIOLogger;
Since the move to
IGSIOfor some functionality,vtkPlusLoggerinherits fromvtkIGSIOLoggerbut creates a separate instance. So my application which used to set log level to 5 now does not get all the messages, because Plus internals now usevtkIGSIOLoggerwhich is a separate instance fromvtkPlusLogger.Expected behavior: there is a single logger instance, and
vtkPlusLoggeris an empty descendant, or even better just a renameusing vtkPlusLogger = vtkIGSIOLogger;