diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2011-09-17 17:19:26 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2011-09-17 17:19:26 -0700 |
commit | bab1c76d35421a3d2a1608e6f3e66d67b4fbdb09 (patch) | |
tree | cc27e38eb52d26bb2a977b2d0335f0f04a23c746 /src/DotNetOpenAuth.Messaging/Logger.cs | |
parent | 344c333ecd76785a77b8a1a56e1bc360ae159d04 (diff) | |
download | DotNetOpenAuth-bab1c76d35421a3d2a1608e6f3e66d67b4fbdb09.zip DotNetOpenAuth-bab1c76d35421a3d2a1608e6f3e66d67b4fbdb09.tar.gz DotNetOpenAuth-bab1c76d35421a3d2a1608e6f3e66d67b4fbdb09.tar.bz2 |
DotNetOpenAuth.Messaging no longer relies on ccrewrite.exe
Diffstat (limited to 'src/DotNetOpenAuth.Messaging/Logger.cs')
-rw-r--r-- | src/DotNetOpenAuth.Messaging/Logger.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/DotNetOpenAuth.Messaging/Logger.cs b/src/DotNetOpenAuth.Messaging/Logger.cs index 48007ed..c9283cd 100644 --- a/src/DotNetOpenAuth.Messaging/Logger.cs +++ b/src/DotNetOpenAuth.Messaging/Logger.cs @@ -142,7 +142,7 @@ namespace DotNetOpenAuth { /// <param name="name">A name that will be included in the log file.</param> /// <returns>The <see cref="ILog"/> instance created with the given name.</returns> internal static ILog Create(string name) { - Contract.Requires<ArgumentException>(!String.IsNullOrEmpty(name)); + Requires.NotNullOrEmpty(name, "name"); return InitializeFacade(name); } @@ -153,7 +153,7 @@ namespace DotNetOpenAuth { /// <param name="name">A name that will be included in the log file.</param> /// <returns>The <see cref="ILog"/> instance created with the given name.</returns> internal static ILog CreateWithBanner(string name) { - Contract.Requires<ArgumentException>(!String.IsNullOrEmpty(name)); + Requires.NotNullOrEmpty(name, "name"); ILog log = Create(name); log.Info(Util.LibraryVersion); return log; @@ -165,7 +165,7 @@ namespace DotNetOpenAuth { /// <param name="type">A type whose full name that will be included in the log file.</param> /// <returns>The <see cref="ILog"/> instance created with the given type name.</returns> internal static ILog Create(Type type) { - Contract.Requires<ArgumentNullException>(type != null); + Requires.NotNull(type, "type"); return Create(type.FullName); } |