Print full stacktrace from plugin loading failure to help determine what went wrong, rather than a possibly unhelpful simple exception message.
							parent
							
								
									2f1cc6a06a
								
							
						
					
					
						commit
						5054a07be2
					
				|  | @ -118,8 +118,11 @@ namespace OpenSim.Server.Base | ||||||
|                             { |                             { | ||||||
|                                 if (!(e is System.MissingMethodException)) |                                 if (!(e is System.MissingMethodException)) | ||||||
|                                 { |                                 { | ||||||
|                                     m_log.ErrorFormat("Error loading plugin {0} from {1}. Exception: {2}", |                                     m_log.ErrorFormat("Error loading plugin {0} from {1}. Exception: {2}, {3}", | ||||||
|                                         interfaceName, dllName, e.InnerException == null ? e.Message : e.InnerException.Message); |                                         interfaceName,  | ||||||
|  |                                         dllName,  | ||||||
|  |                                         e.InnerException == null ? e.Message : e.InnerException.Message,  | ||||||
|  |                                         e.StackTrace); | ||||||
|                                 } |                                 } | ||||||
|                                 return null; |                                 return null; | ||||||
|                             } |                             } | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue
	
	 Justin Clark-Casey (justincc)
						Justin Clark-Casey (justincc)