| Pacote | org.osmf.logging |
| Classe | public class Logger |
| Herança | Logger Object |
| Versão da linguagem: | ActionScript 3.0 |
| Versão de produto: | OSMF 1.0 |
| Versões de runtime: | Flash Player 10, AIR 1.5 |
Elementos da API relacionados
| Propriedade | Definido por | ||
|---|---|---|---|
| category : String [somente leitura]
The category value for the logger. | Logger | ||
![]() | constructor : Object
Uma referência ao objeto de classe ou à função de construtor de uma determinada ocorrência de objeto. | Object | |
| Método | Definido por | ||
|---|---|---|---|
Constructor. | Logger | ||
Logs a message with a "debug" level. | Logger | ||
Logs a message with a "error" level. | Logger | ||
Logs a message with a "fatal" level. | Logger | ||
![]() |
Indica se um objeto tem uma propriedade especificada definida. | Object | |
Logs a message with a "info" level. | Logger | ||
![]() |
Indica se uma ocorrência da classe Object está na cadeia de protótipos do objeto especificado como o parâmetro. | Object | |
![]() |
Indica se a propriedade especificada existe e é enumerável. | Object | |
![]() |
Define a disponibilidade de uma propriedade dinâmica para operações de repetição. | Object | |
![]() |
Retorna a representação da string deste objeto, formatado segundo as convenções específicas para a localidade. | Object | |
![]() |
Retorna a representação de string do objeto especificado. | Object | |
![]() |
Retorna o valor primitivo do objeto especificado. | Object | |
Logs a message with a "warn" level. | Logger | ||
category | propriedade |
Logger | () | Construtor |
debug | () | método |
public function debug(message:String, ... rest):void| Versão da linguagem: | ActionScript 3.0 |
| Versão de produto: | OSMF 1.0 |
| Versões de runtime: | Flash Player 10, AIR 1.5 |
Logs a message with a "debug" level.
Debug messages are informational messages that are fine-grained, and intended to be helpful when debugging.
Parâmetros
message:String — The information to log. This string can contain special
special marker characters of the form {x}, where x is a zero-based
index that will be replaced with the additional parameters found at
that index if specified.
| |
... rest — Additional parameters that can be subsituted in the
message parameter at each "{x}" location, where x is an zero-based
integer index into the Array of values specified.
|
error | () | método |
public function error(message:String, ... rest):void| Versão da linguagem: | ActionScript 3.0 |
| Versão de produto: | OSMF 1.0 |
| Versões de runtime: | Flash Player 10, AIR 1.5 |
Logs a message with a "error" level.
Error messages are intended to capture error events that might still allow the application to continue running.
Parâmetros
message:String — The information to log. This string can contain special
special marker characters of the form {x}, where x is a zero-based
index that will be replaced with the additional parameters found at
that index if specified.
| |
... rest — Additional parameters that can be subsituted in the
message parameter at each "{x}" location, where x is an zero-based
integer index into the Array of values specified.
|
fatal | () | método |
public function fatal(message:String, ... rest):void| Versão da linguagem: | ActionScript 3.0 |
| Versão de produto: | OSMF 1.0 |
| Versões de runtime: | Flash Player 10, AIR 1.5 |
Logs a message with a "fatal" level.
Fatal messages are intended to capture error events that are likely to lead to application failure.
Parâmetros
message:String — The information to log. This string can contain special
special marker characters of the form {x}, where x is a zero-based
index that will be replaced with the additional parameters found at
that index if specified.
| |
... rest — Additional parameters that can be subsituted in the
message parameter at each "{x}" location, where x is an zero-based
integer index into the Array of values specified.
|
info | () | método |
public function info(message:String, ... rest):void| Versão da linguagem: | ActionScript 3.0 |
| Versão de produto: | OSMF 1.0 |
| Versões de runtime: | Flash Player 10, AIR 1.5 |
Logs a message with a "info" level.
Info messages are intended to be informational, as opposed to indicating a concern.
Parâmetros
message:String — The information to log. This string can contain special
special marker characters of the form {x}, where x is a zero-based
index that will be replaced with the additional parameters found at
that index if specified.
| |
... rest — Additional parameters that can be subsituted in the
message parameter at each "{x}" location, where x is an zero-based
integer index into the Array of values specified.
|
warn | () | método |
public function warn(message:String, ... rest):void| Versão da linguagem: | ActionScript 3.0 |
| Versão de produto: | OSMF 1.0 |
| Versões de runtime: | Flash Player 10, AIR 1.5 |
Logs a message with a "warn" level.
Warn messages are intended to warn of events that could be harmful to the operation of the application.
Parâmetros
message:String — The information to log. This string can contain special
special marker characters of the form {x}, where x is a zero-based
index that will be replaced with the additional parameters found at
that index if specified.
| |
... rest — Additional parameters that can be subsituted in the
message parameter at each "{x}" location, where x is an zero-based
integer index into the Array of values specified.
|
package
{
import flash.display.Sprite;
import flash.display.StageAlign;
import flash.display.StageScaleMode;
import org.osmf.elements.VideoElement;
import org.osmf.logging.Logger;
import org.osmf.logging.Log;
import org.osmf.media.MediaPlayerSprite;
import org.osmf.media.URLResource;
public class LoggerSample extends Sprite
{
public function LoggerSample()
{
super();
Log.loggerFactory = new ExampleLoggerFactory();
logger = Log.getLogger("LoggerSample");
stage.scaleMode = StageScaleMode.NO_SCALE;
stage.align = StageAlign.TOP_LEFT;
var mediaPlayerSprite:MediaPlayerSprite = new MediaPlayerSprite();
var urlResource:URLResource = new URLResource("rtmp://cp67126.edgefcs.net/ondemand/mediapm/strobe/content/test/SpaceAloneHD_sounas_640_500_short");
var videoElement:VideoElement = new VideoElement(urlResource);
addChild(mediaPlayerSprite);
logger.debug("Ready to play video at " + urlResource.url.toString());
mediaPlayerSprite.media = videoElement;
}
private var logger:Logger;
}
}
package
{
import org.osmf.logging.Logger;
import org.osmf.logging.LoggerFactory;
public class ExampleLoggerFactory extends LoggerFactory
{
public function ExampleLoggerFactory()
{
super();
}
override public function getLogger(category:String):Logger
{
return new ExampleLogger(category);
}
}
}
package
{
import org.osmf.logging.Logger;
public class ExampleLogger extends Logger
{
public function ExampleLogger(category:String)
{
super(category);
}
override public function debug(message:String, ... rest):void
{
trace(message);
}
}
}
Wed Jun 13 2018, 11:10 AM Z
Ocultar propriedades públicas herdadas
Mostrar propriedades públicas herdadas