Click or drag to resize
Welcome to YALLA.NET

[This is preliminary documentation and is subject to change.]

Introduction

YALLA.NET is Yet Another Logging Library Abstraction for .NET.

Deployment diagram
Figure 1: Deployment diagram

Note Note
This is the YALLA.NET documentation. For the (unrelated) node.js library please refer to node-yalla.

Features

YALLA.NET offers the following features:

Getting Started

As shown in Figure 1 above, YALLA.NET supports a variety of use cases, which include the following:

  1. Application Code Source: Your application code either requires the addition of logging functionality, or offers logging functionality that requires modification.

  2. Library Code Source: Your library code either requires the addition of logging functionality, or offers logging functionality that requires modification.

  3. Platform Facility Target: Your application or library code requires logging functionality with one or more platform-specific facilities.

Note Note

This is a preliminary release with limited functionality.Application Code Source, Library Code Source and Platform Facility Target are currently the only supported use cases.

In order to start using YALLA.NET in an application/service or a library, you need to add the YALLA.NET Core library as a dependency to your project. If you haven't already, install the Yalla.Core NuGet package .

In order for your application to produce YALLA.NET log(s), you need to add YALLA.NET as a dependency to the main project(s) (The YALLA.NET Core dependency will be added for you.). If you haven't already, install the Yalla NuGet package . The current version is Version 0.3.0.

The logging system must be properly initialized at application startup. The recommended method is Configure.

The logging system must be properly terminated at application teardown. The recommended method is Shutdown.

Detailed YALLA.NET API information may be found in the Reference section.

Platforms

The following platforms are supported:

  • .NET Framework 4
  • Silverlight 5
  • Windows 8 (WIP)
  • Windows Phone 8.1 (WIP)
  • Windows Phone Silverlight 8 (WIP)
  • Xamarin.Android (WIP)
  • Xamarin.iOS (WIP)
  • Xamarin.OSX (WIP)
  • Portable Class Libraries
Note Note

This is a preliminary release with limited functionality. .NET Framework 4 (or later), Silverlight 5 and Portable Class Libraries are currently the only supported platforms.

Sources

The following log sources are supported:

Note Note

This is a preliminary release with limited functionality. Support for new sources is added on a nearly daily basis.

Targets

The following log targets are supported:

  • Standard output
  • Error output
  • Debug output
  • Trace
  • Event log (WIP)
Note Note

This is a preliminary release with limited functionality. Support for new targets is added on a nearly daily basis.

Configuration
The following configuration sources are supported:

  • Application Configuration XML
  • Library Configuration XML
  • Standalone XML
  • Standalone XAML
  • JSON (WIP)
Note Note

This is a preliminary release with limited functionality.Application Configuration XML, Library Configuration XML, Standalone XML and Standalone XAML are currently the only supported configuration sources.

Thanks

  • Yaniv Kessler

Notice

Copyright © Dmitry Shechtman 2015

Licensed under the Apache License, Version 2.0 (the "License").

You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

See Also