// Author: Daniele Giardini - http://www.demigiant.com
// Created: 2014/07/03 12:11
//
// License Copyright (c) Daniele Giardini.
// This work is subject to the terms at http://dotween.demigiant.com/license.php
namespace DG.Tweening
{
///
/// Types of log behaviours
///
public enum LogBehaviour
{
/// Log only warnings and errors
Default,
/// Log warnings, errors and additional infos
Verbose,
/// Log only errors
ErrorsOnly
}
}