in src/main/java/org/apache/sling/commons/threads/impl/ExtendedThreadFactory.java [93:100]
public Thread newThread( final Runnable command ) {
final Thread thread = this.factory.newThread(command);
thread.setName(nextThreadName());
thread.setPriority( this.priority );
thread.setDaemon( this.isDaemon );
return thread;
}