Commit MetaInfo
Log Message
Remove some duplicate text resources.
Change Summary
Diff
| | @@ -2760,9 +2760,9 @@ | | 2760 | 2760 | } | | 2761 | 2761 | sb.append( "]" ); | | 2762 | 2762 | | | 2763 | | - m_outDebug.println( getRes().getString( | | 2764 | | - "WrapperManager.start({0}, {1}) called by thread: {2}" , | | 2765 | | - listener , sb.toString(), Thread.currentThread().getName() ) ); | | 2763 | + m_outDebug.println( getRes().getString( "{0} called by thread: {1}", | | 2764 | + "WrapperManager.start(a " + listener.getClass().getName() + ", " + sb.toString() + ")", | | 2765 | + Thread.currentThread().getName() ) ); | | 2766 | 2766 | } | | 2767 | 2767 | | | 2768 | 2768 | synchronized( WrapperManager.class ) |
| | @@ -2861,9 +2861,9 @@ | | 2861 | 2861 | | | 2862 | 2862 | if ( m_debug ) | | 2863 | 2863 | { | | 2864 | | - m_outDebug.println( getRes().getString( | | 2865 | | - "WrapperManager.requestShutdownLock() called by thread: {0}. New thread lock count: {1}, total lock count: {2}", | | 2866 | | - thisThread.getName(), new Integer( lock.m_count ), new Integer( m_shutdownLocks ) ) ); | | 2864 | + m_outDebug.println( getRes().getString( "{0} called by thread: {1} (New thread lock count: {2}, total lock count: {3})", | | 2865 | + "WrapperManager.requestShutdownLock()", | | 2866 | + thisThread.getName(), new Integer( lock.m_count ), new Integer( m_shutdownLocks ) ) ); | | 2867 | 2867 | } | | 2868 | 2868 | } | | 2869 | 2869 | } |
| | @@ -2891,9 +2891,9 @@ | | 2891 | 2891 | | | 2892 | 2892 | if ( m_debug ) | | 2893 | 2893 | { | | 2894 | | - m_outDebug.println( getRes().getString( | | 2895 | | - "WrapperManager.releaseShutdownLock() called by thread: {0}. New thread lock count: {1}, total lock count: {2}" , | | 2896 | | - thisThread.getName(), new Integer( lock.m_count ), new Integer( m_shutdownLocks ) ) ); | | 2894 | + m_outDebug.println( getRes().getString( "{0} called by thread: {1} (New thread lock count: {2}, total lock count: {3})", | | 2895 | + "WrapperManager.releaseShutdownLock()", | | 2896 | + thisThread.getName(), new Integer( lock.m_count ), new Integer( m_shutdownLocks ) ) ); | | 2897 | 2897 | } | | 2898 | 2898 | | | 2899 | 2899 | if ( lock.m_count <= 0 ) |
| | @@ -2963,8 +2963,9 @@ | | 2963 | 2963 | | | 2964 | 2964 | if ( m_debug ) | | 2965 | 2965 | { | | 2966 | | - m_outDebug.println(getRes().getString( | | 2967 | | - "WrapperManager.restart() called by thread: {0}" , Thread.currentThread().getName() ) ); | | 2966 | + m_outDebug.println( getRes().getString( "{0} called by thread: {1}", | | 2967 | + "WrapperManager.restart()", | | 2968 | + Thread.currentThread().getName() ) ); | | 2968 | 2969 | } | | 2969 | 2970 | | | 2970 | 2971 | restartInner(); |
| | @@ -3003,8 +3004,9 @@ | | 3003 | 3004 | { | | 3004 | 3005 | if ( m_debug ) | | 3005 | 3006 | { | | 3006 | | - m_outDebug.println(getRes().getString( | | 3007 | | - "WrapperManager.restartAndReturn() called by thread: {0} already stopping." ,Thread.currentThread().getName() ) ); | | 3007 | + m_outDebug.println( getRes().getString( "{0} called by thread: {1} (already stopping)", | | 3008 | + "WrapperManager.restartAndReturn()", | | 3009 | + Thread.currentThread().getName() ) ); | | 3008 | 3010 | } | | 3009 | 3011 | return; | | 3010 | 3012 | } |
| | @@ -3012,8 +3014,9 @@ | | 3012 | 3014 | { | | 3013 | 3015 | if ( m_debug ) | | 3014 | 3016 | { | | 3015 | | - m_outDebug.println( getRes().getString( | | 3016 | | - "WrapperManager.restartAndReturn() called by thread: {0}" ,Thread.currentThread().getName() ) ); | | 3017 | + m_outDebug.println( getRes().getString( "{0} called by thread: {1}", | | 3018 | + "WrapperManager.restartAndReturn()", | | 3019 | + Thread.currentThread().getName() ) ); | | 3017 | 3020 | } | | 3018 | 3021 | } | | 3019 | 3022 | } |
| | @@ -3110,9 +3113,9 @@ | | 3110 | 3113 | | | 3111 | 3114 | if ( m_debug ) | | 3112 | 3115 | { | | 3113 | | - m_outDebug.println( getRes().getString( | | 3114 | | - "WrapperManager.stop({0}) called by thread: {1}", | | 3115 | | - new Integer( exitCode ), Thread.currentThread().getName() ) ); | | 3116 | + m_outDebug.println( getRes().getString( "{0} called by thread: {1}", | | 3117 | + "WrapperManager.stop(" + exitCode + ")", | | 3118 | + Thread.currentThread().getName() ) ); | | 3116 | 3119 | } | | 3117 | 3120 | | | 3118 | 3121 | stopCommon( exitCode, 1000 ); |
| | @@ -3164,9 +3167,9 @@ | | 3164 | 3167 | { | | 3165 | 3168 | if ( m_debug ) | | 3166 | 3169 | { | | 3167 | | - m_outDebug.println( getRes().getString( | | 3168 | | - "WrapperManager.stopAndReturn({0}) called by thread: {1} already stopping.", | | 3169 | | - new Integer( exitCode ), Thread.currentThread().getName() ) ); | | 3170 | + m_outDebug.println( getRes().getString( "{0} called by thread: {1} (already stopping)", | | 3171 | + "WrapperManager.stopAndReturn(" + exitCode + ")", | | 3172 | + Thread.currentThread().getName() ) ); | | 3170 | 3173 | } | | 3171 | 3174 | return; | | 3172 | 3175 | } |
| | @@ -3174,9 +3177,9 @@ | | 3174 | 3177 | { | | 3175 | 3178 | if ( m_debug ) | | 3176 | 3179 | { | | 3177 | | - m_outDebug.println( getRes().getString( | | 3178 | | - "WrapperManager.stopAndReturn({0}) called by thread: {1}" , | | 3179 | | - new Integer( exitCode ), Thread.currentThread().getName() ) ); | | 3180 | + m_outDebug.println( getRes().getString( "{0} called by thread: {1}", | | 3181 | + "WrapperManager.stopAndReturn(" + exitCode + ")", | | 3182 | + Thread.currentThread().getName() ) ); | | 3180 | 3183 | } | | 3181 | 3184 | } | | 3182 | 3185 | } |
| | @@ -3228,9 +3231,9 @@ | | 3228 | 3231 | | | 3229 | 3232 | if ( m_debug ) | | 3230 | 3233 | { | | 3231 | | - m_outDebug.println( getRes().getString( | | 3232 | | - "WrapperManager.stopImmediate({0}) called by thread: {1}" , | | 3233 | | - new Integer( exitCode ), Thread.currentThread().getName() ) ); | | 3234 | + m_outDebug.println( getRes().getString( "{0} called by thread: {1}", | | 3235 | + "WrapperManager.stopImmediate(" + exitCode + ")", | | 3236 | + Thread.currentThread().getName() ) ); | | 3234 | 3237 | } | | 3235 | 3238 | | | 3236 | 3239 | stopCommon( exitCode, 250 ); |
旧リポジトリブラウザで表示
|